Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mongoose
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
esp
mongoose
Commits
78ea0455
Commit
78ea0455
authored
Sep 24, 2012
by
Sergey Lyubka
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Windows build for examples added
parent
7fe29444
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
2 deletions
+26
-2
Makefile
examples/Makefile
+14
-0
upload.c
examples/upload.c
+12
-2
No files found.
examples/Makefile
View file @
78ea0455
...
...
@@ -8,3 +8,17 @@ all:
$(CC)
$(CFLAGS)
post.c ../mongoose.c
$$
LIBS
$(ADD)
-o
post
;
$(CC)
$(CFLAGS)
-DUSE_WEBSOCKET
websocket.c ../mongoose.c
$$
LIBS
$(ADD)
-o
websocket
;
$(CC)
$(CFLAGS)
chat.c ../mongoose.c
$$
LIBS
$(ADD)
-o
chat
MSVC
=
e:/vc6
CL
=
$(MSVC)
/bin/cl
CLFLAGS
=
/MD /TC /nologo
$(DBG)
/W3 /DNO_SSL
\
/I
$(MSVC)
/include /I.. /Dsnprintf
=
_snprintf
\
/link /incremental:no /libpath:
$(MSVC)
/lib /machine:IX86
windows
:
$(CL)
hello.c ../mongoose.c
$(CLFLAGS)
$(CL)
upload.c ../mongoose.c
$(CLFLAGS)
$(CL)
post.c ../mongoose.c
$(CLFLAGS)
$(CL)
post.c ../mongoose.c
$(CLFLAGS)
$(CL)
/DUSE_WEBSOCKET websocket.c ../mongoose.c
$(CLFLAGS)
\ No newline at end of file
examples/upload.c
View file @
78ea0455
...
...
@@ -5,8 +5,18 @@
#include <string.h>
#include <fcntl.h>
#include <stdlib.h>
#ifdef _WIN32
#include <windows.h>
#include <io.h>
#define strtoll strtol
typedef
__int64
int64_t
;
#define O_CLOEXEC 0
#define O_EXLOCK 0
#else
#include <inttypes.h>
#include <unistd.h>
#endif // !_WIN32
#include "mongoose.h"
// Make sure that form has enctype="multipart/form-data" attribute
...
...
@@ -25,7 +35,7 @@ static void handle_file_upload(struct mg_connection *conn) {
char
post_data
[
16
*
1024
],
path
[
999
],
file_name
[
1024
],
mime_type
[
100
],
buf
[
BUFSIZ
],
*
eop
,
*
s
,
*
p
;
FILE
*
fp
;
long
long
in
t
cl
,
written
;
int64_
t
cl
,
written
;
int
fd
,
n
,
post_data_len
;
// Figure out total content length. Return if it is not present or invalid.
...
...
@@ -87,7 +97,7 @@ static void handle_file_upload(struct mg_connection *conn) {
(
void
)
fwrite
(
p
,
1
,
n
,
fp
);
written
=
n
;
while
(
written
<
cl
&&
(
n
=
mg_read
(
conn
,
buf
,
cl
-
written
>
(
long
long
)
sizeof
(
buf
)
?
(
n
=
mg_read
(
conn
,
buf
,
cl
-
written
>
(
int64_t
)
sizeof
(
buf
)
?
sizeof
(
buf
)
:
cl
-
written
))
>
0
)
{
(
void
)
fwrite
(
buf
,
1
,
n
,
fp
);
written
+=
n
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment