- Mar 21, 2015
-
-
Sergey Lyubka authored
-
- Mar 20, 2015
-
-
Sergey Lyubka authored
-
- Mar 18, 2015
-
-
Robert Di Paolo authored
-
Robert Di Paolo authored
-
Robert Di Paolo authored
-
Sergey Lyubka authored
- Mar 17, 2015
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
Dinis Rosário authored
Fix remove_double_dots_and_double_slashes removing all the dots leading http server to serve wrong URI If the uri is something like '/js/...jquery.js', remove_double_dots_and_double_slashes will remove the 3 dots and the http server will serves the /js/jquery.js file. remove_double_dots_and_double_slashes should check if a dot or double dots is followed by a slash (or backslash) and only remove this to avoid disclosure attack.
-
Sergey Lyubka authored
-
- Mar 14, 2015
-
-
Miodrag Milanovic authored
-
- Mar 10, 2015
-
-
David Milligan authored
-
- Mar 09, 2015
-
-
Sergey Lyubka authored
-
- Mar 03, 2015
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
- Feb 24, 2015
-
-
Sergey Lyubka authored
-
Miodrag Milanovic authored
Upstream patch from MAME project
-
- Feb 19, 2015
-
-
CurlyMoo authored
-
- Feb 17, 2015
-
-
Miodrag Milanovic authored
-
- Feb 16, 2015
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
- Feb 12, 2015
-
-
Sergey Lyubka authored
-
- Jan 29, 2015
-
-
Thomas Klausner authored
Fixes the build on NetBSD. The comment says it's only needed on Linux, and AFAIK Linux is the only operating system that only adds symbols when it's defined; others, like NetBSD or Solaris, also hide symbols. Signed-off-by:
Thomas Klausner <wiz@NetBSD.org>
-
Doug Rogers authored
-
- Jan 27, 2015
- Dec 30, 2014
-
-
Sergey Lyubka authored
-
- Dec 21, 2014
-
-
Sebastian Godelet authored
As of http://www.rfc-editor.org/rfc/rfc4329.txt, the preferred MIME type for JavaScript is application/javascript.
-
- Dec 18, 2014
-
-
Gary Coulbourne authored
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.
-
- Dec 11, 2014
-
-
Sergey Lyubka authored
-
- Nov 28, 2014
-
-
Sergey Lyubka authored
-
- Nov 10, 2014
-
-
Johan Wikman authored
malloc(), free() and realloc() were used in a number of places. Added NS_CALLOC as well.
-
- Nov 07, 2014
-
-
Johan Wikman authored
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.
-
Johan Wikman authored
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.
-
Johan Wikman authored
On very resource constraind devices you need to be able to control the size of all buffers and structures placed on the stack.
-
Johan Wikman authored
Low-end systems, not running a proper OS, may not have the concept of a user.
-
Sergey Lyubka authored
-
Johan Wikman authored
Some unix environments defines O_BINARY.
-