Gary Coulbourne
8cad0a72f9
64-bit length fields on ARM don't work
...
ARM only allows aligned accesses. GCC generated unaligned accesses for the copy buffer, but ARM forces alignment, causing the first two bytes to be trampled. I changed the mechanism to create two temporaries and memcpy them in. It now works on ARM (and x86) for large websocket chunks.
2014-12-17 19:14:30 -05:00
Sergey Lyubka
7a5485493e
Added md5 copyright
2014-12-11 18:01:58 +00:00
Sergey Lyubka
45ff2c2c19
Removed $Date$ marker
2014-11-28 14:16:49 +00:00
Johan Wikman
ba9c74187b
Consistent use of NS_MALLOC, NS_FREE and NS_REALLOC
...
malloc(), free() and realloc() were used in a number of places.
Added NS_CALLOC as well.
2014-11-10 08:29:19 +02:00
Sergey Lyubka
e9d4847cbb
Merge pull request #432 from jhnwkmn/o_binary
...
O_BINARY might be defined.
2014-11-09 10:06:16 +00:00
Sergey Lyubka
ea76de07ee
Merge pull request #436 from jhnwkmn/no-cgi
...
MONGOOSE_NO_CGI needs special handling.
2014-11-09 10:04:54 +00:00
Sergey Lyubka
5a8c468ff7
Merge pull request #435 from jhnwkmn/size-macros
...
Added size macros.
2014-11-09 10:01:59 +00:00
Sergey Lyubka
5b143a6237
Merge pull request #434 from jhnwkmn/no-user
...
Added MONGOOSE_NO_USER configuration define.
2014-11-09 09:56:31 +00:00
Johan Wikman
300a27de99
If socket is about to be closed do not add to [read|write]_set.
...
If NSG_CLOSE_IMMEDIATELY is on, then the socket will be closed,
which means that (if the socket was added to either read_set or
write_set) the subsequent select will in turn be performed on a
socket that has been closed.
Standard socket implementations seem to ignore a descriptor
referring to a closed socket but LWIP
(http://savannah.nongnu.org/projects/lwip/ ) crashes. So better
not to add to the sets.
2014-11-07 15:48:23 +02:00
Johan Wikman
04a15a0c10
MONGOOSE_NO_CGI needs special handling.
...
MONGOOSE_NO_CGI is implied by both NS_DISABLE_SOCKETPAIR and
MONGOOSE_NO_FILESYSTEM. Thus, so as not to get complaints about
the same define being defined twice, some extra checks are needed.
2014-11-07 15:29:25 +02:00
Johan Wikman
f0f6ae05aa
Added size macros.
...
On very resource constraind devices you need to be able to
control the size of all buffers and structures placed on the
stack.
2014-11-07 14:31:44 +02:00
Johan Wikman
8a7d535d92
Added MONGOOSE_NO_USER configuration define.
...
Low-end systems, not running a proper OS, may not have the
concept of a user.
2014-11-07 14:01:13 +02:00
Sergey Lyubka
e7ac6024de
Merge branch 'master' of ssh://github.com/valenok/mongoose
2014-11-07 10:05:51 +00:00
Sergey Lyubka
9981b99ac8
Extra NULL check in iter2(). Fix #430
2014-11-07 10:05:42 +00:00
Johan Wikman
87a36c0c30
O_BINARY might be defined.
...
Some unix environments defines O_BINARY.
2014-11-07 12:02:11 +02:00
Johan Wikman
9786478a31
Conditionally include dirent.h and dlfcn.h
...
If you do not have a filesystem or do not support dav or
dynamic loading, the corresponding header files need not
be included (some environments might not have them).
2014-11-07 11:05:51 +02:00
Alexandro Sánchez Bach
e098a7292d
Added #define's for deprecated POSIX names
2014-10-30 23:07:48 +01:00
Sergey Lyubka
0322ec5647
Include query_string when proxying requests
2014-10-22 12:14:21 +01:00
Sergey Lyubka
a5223a9850
Squashed ARM warnings
2014-10-21 15:51:42 +01:00
Sergey Lyubka
cf53959f34
Fix broken push (type cast)
2014-10-17 20:03:15 +01:00
MPR
c05b51bbfc
make compile with g++ (fix invalid conversion from ‘void*’ to ‘ns_connection*’)
2014-10-16 23:57:14 +02:00
Sergey Lyubka
1ab704ac92
Fixed -DMONGOOSE_NO_DIRECTORY_LISTING build
2014-10-16 10:46:33 +01:00
Sergey Lyubka
a6598a1278
Added #define close(x) _close(x) for WIN32 to squash warning 4996 that VS2013 gives
2014-10-15 08:30:49 +01:00
Sergey Lyubka
0af5502b74
Removed redundant #defines for -D_WIN32 case
2014-10-15 08:28:17 +01:00
Sergey Lyubka
f059e41cac
Removed mg_set_listening_socket() and mg_get_listening_socket(), added mg_copy_listeners()
2014-10-14 15:25:56 +01:00
Sergey Lyubka
2cce91de9a
Refactored code for multiple listeners
2014-10-14 14:22:26 +01:00
Sergey Lyubka
0ff5b5b044
Added support for multiple listeners
2014-10-14 13:59:22 +01:00
Sergey Lyubka
0c5d9a98c2
Merge branch 'master' of ssh://github.com/valenok/mongoose
2014-10-14 11:10:47 +01:00
Sergey Lyubka
c9fbdfc1b5
mg_open() accepts 3rd param: mode
2014-10-14 11:10:42 +01:00
Sergey Lyubka
6193b5171c
Merge pull request #421 from mpromonet/master
...
transmit http answer code using http_client
2014-10-14 11:10:03 +01:00
Sergey Lyubka
2f3ddeccc5
Properly trim whitespaces from the hashbang CGI interpreter path
2014-10-13 15:57:34 +01:00
MPR
ca3f5a3257
follow Google style
2014-10-12 13:58:06 +02:00
MPR
df206bc05a
transmit http answer code using http_client
2014-10-11 17:56:35 +02:00
Sergey Lyubka
4ca4c862a5
Updated net_skeleton, added extra_headers param to mg_send_file()
2014-10-09 09:26:45 +01:00
Ake Hedman
53b784b143
connection_data -> user_data
2014-09-19 08:20:37 +02:00
Sergey Lyubka
8e91e3a305
Timeout only non-listening connections
2014-09-16 07:47:40 +01:00
Sergey Lyubka
ce953575e2
Not closing listening connections
2014-09-15 13:48:55 +01:00
Sergey Lyubka
382d165574
Added MONGOOSE_NO_MMAP conditional
2014-09-15 01:18:38 +01:00
Sergey Lyubka
8752910330
Better UDP support
2014-09-11 15:52:42 +01:00
Sergey Lyubka
6083b9c5c5
Updated to the recent skeleton. SSL address format changed
2014-09-09 18:07:55 +01:00
m.milanovic@levi9.com
7806609773
Added mg_mmap and mg_munmap utility functions for memory mapping files
2014-09-04 15:05:42 +02:00
m.milanovic@levi9.com
5e3e6a6dce
Fixed compile on MINGW so it is confirmed working on versions 4.6.x till 4.9.x
2014-09-02 12:11:21 +02:00
Sergey Lyubka
3cc0d16f65
Merge branch 'master' of ssh://github.com/valenok/mongoose
2014-09-01 20:55:37 +01:00
Sergey Lyubka
b50095fa61
Added $Date$ markers
2014-09-01 20:54:12 +01:00
Massimo Callegari
347a249d10
Fixed build warning of signed/unsigned conditional expression
2014-08-30 13:04:11 +02:00
Sergey Lyubka
07d982129a
Passing NS events together with the NC pointer
2014-08-29 23:28:34 +01:00
Sergey Lyubka
c941a1a39a
Proper struct mg_connection cleanup in close_local_endpoint()
2014-08-22 16:26:30 +01:00
Sergey Lyubka
bee22312bc
removed dead code
2014-08-21 04:13:33 +01:00
Sergey Lyubka
bdb16c624c
Added MG_RECV event and mg_send_file_data() func
2014-08-21 04:09:06 +01:00
Sergey Lyubka
e389e70d05
squashed warn in mg_terminate_ssl()
2014-08-20 21:54:09 +01:00