- Aug 03, 2013
-
-
Sergey Lyubka authored
-
- Aug 02, 2013
-
-
Sergey Lyubka authored
-
- Jul 30, 2013
-
-
Sergey Lyubka authored
-
- Jul 29, 2013
-
-
bick authored
When using g++ and enforcing strict compiler errors, this commit fixes the following: mongoose.c: In function ‘char* mg_fgets(char*, size_t, file*, char**)’: mongoose.c:2405:60: error: invalid conversion from ‘void*’ to ‘char*’ [-fpermissive] mongoose.c: In function ‘int set_ports_option(mg_context*)’: mongoose.c:4586:64: error: invalid conversion from ‘void*’ to ‘socket*’ [-fpermissive] mongoose.c: In function ‘void* worker_thread(void*)’: mongoose.c:5104:28: error: invalid conversion from ‘void*’ to ‘mg_context*’ [-fpermissive] mongoose.c: In function ‘void* master_thread(void*)’: mongoose.c:5220:28: error: invalid conversion from ‘void*’ to ‘mg_context*’ [-fpermissive] mongoose.c:5235:58: error: invalid conversion from ‘void*’ to ‘pollfd*’ [-fpermissive]
-
- Jul 28, 2013
-
-
Sergey Lyubka authored
-
- Jul 26, 2013
-
-
bick authored
mongoose.c:4680:23: error: ‘ERR_get_error’ was not declared in this scope mongoose.c:4681:52: error: ‘ERR_error_string’ was not declared in this scope
-
- Jul 25, 2013
-
-
Sergey Lyubka authored
Added check for document_root != NULL in convert_uri_to_file_name(). Added #define rmdir _rmdir for win32
-
Sergey Lyubka authored
-
- Jul 24, 2013
-
-
José Miguel Gonçalves authored
-
- Jul 23, 2013
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
- Jul 22, 2013
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
- Jul 20, 2013
-
-
Sergey Lyubka authored
-
- Jul 19, 2013
-
-
Sergey Lyubka authored
-
- Jul 18, 2013
-
-
Sergey Lyubka authored
-
John Safranek authored
-
- Jul 17, 2013
-
-
Sergey Lyubka authored
-
- Jul 16, 2013
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
- Jul 15, 2013
-
-
Sergey Lyubka authored
-
- Jul 14, 2013
-
-
Sergey Lyubka authored
-
- Jul 12, 2013
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
- Jul 11, 2013
-
-
Sergey Lyubka authored
-
- Jul 10, 2013
-
-
Sergey Lyubka authored
-
- Jul 01, 2013
-
-
Sergey Lyubka authored
-
Sergey Lyubka authored
-
- Jun 28, 2013
-
-
Katerina Blinova authored
-
- Jun 27, 2013
-
-
Katerina Blinova authored
-
- Jun 12, 2013
-
-
Stefan Doehla authored
-
- May 30, 2013
-
-
arvidn authored
support serving pre-gzipped files transparently provided the user agent accepts gzip content-encoding. The feature breaks if the user agent makes a range request within a gzipped file, and returns 501 in this case
-
Cody Hanson authored
Needs to be a valid TCP port number, and not less than 1 or greater than 65535
-
- May 19, 2013
-
-
Sergey Lyubka authored
-
jwang authored
For SSL in close_connection, current implementation use close_socket_gracefully to close socket firstly, then SSL_free. In my testing, this approach may cause some pending write data missing. I'd suggest use standard SSL_shutdown in SSL conection. It need call twice according to openSSL manual - one call sends the close_notify alert and one call receives the response from the peer
-
Sergey Lyubka authored
-
- May 18, 2013
-
-
Sergey Lyubka authored
-
- May 16, 2013
-
-
Erik Oomen authored
-
- May 15, 2013
-
-
Sergey Lyubka authored
Lua functionality change: print renamed to mg.write, read renamed to mg.read. Expanded user manual, fixed example pages.
-