Sergey Lyubka
b1c66f6544
Merge pull request #207 from bick4ord/master
...
Add casts to fix strict compiler errors [-fpermissive]
2013-07-29 13:20:43 -07:00
bick
8f79a0564f
Add casts to fix strict compiler errors [-fpermissive]
...
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]
2013-07-29 11:46:24 -07:00
Sergey Lyubka
2e93cde929
Merge branch 'master' of ssh://github.com/valenok/mongoose
2013-07-28 12:15:30 +01:00
Sergey Lyubka
e53d05637a
Binding to IPv6 addresses
2013-07-28 12:15:16 +01:00
Sergey Lyubka
9d75d35365
v. x.x -> v.x.x
2013-07-28 08:20:21 +01:00
Sergey Lyubka
2ea8d85cff
Merge pull request #206 from bick4ord/master
...
adding include of openssl/err.h to fix errors when NO_SSL_DL is defined:
2013-07-26 22:48:49 -07:00
bick
ea81a22529
adding include of openssl/err.h to fix errors when NO_SSL_DL is defined:
...
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
2013-07-26 14:12:33 -07:00
Sergey Lyubka
526f3aa31c
Added check for document_root != NULL in convert_uri_to_file_name(). Added #define rmdir _rmdir for win32
2013-07-25 07:22:02 +01:00
Sergey Lyubka
62d66201c9
make match_prefix() case-insensitive
2013-07-25 07:07:25 +01:00
Sergey Lyubka
f32e14478f
Merge pull request #203 from JoseGoncalves/fixes
...
Fix uninitialized argument in getsockname().
2013-07-24 04:58:27 -07:00
José Miguel Gonçalves
ca019799b9
Fix uninitialized argument in getsockname().
2013-07-24 12:24:13 +01:00
Sergey Lyubka
c6fb9ac3d0
Fixed indenting in is_put_or_delete_request()
2013-07-23 08:24:52 +01:00
Sergey Lyubka
c80a88a407
Added test for uploading 2 files
2013-07-23 08:17:00 +01:00
Sergey Lyubka
f2e19ca3ff
Fixed indenting
2013-07-23 08:16:38 +01:00
Sergey Lyubka
16c463d2e9
Added compile-time option to set stack size
2013-07-22 10:10:19 +01:00
Sergey Lyubka
6a99518048
updated readme
2013-07-22 09:54:02 +01:00
Sergey Lyubka
3b242ec68b
Added Android makefile
2013-07-22 09:45:23 +01:00
Sergey Lyubka
7409166409
Updated readme
2013-07-22 09:30:01 +01:00
Sergey Lyubka
ca66b84f7d
Updated readme
2013-07-22 09:27:47 +01:00
Sergey Lyubka
dc1c732f11
Updated readme
2013-07-22 09:24:17 +01:00
Sergey Lyubka
61148f1323
Using absolute paths for all file/directory options
2013-07-22 08:23:15 +01:00
Sergey Lyubka
136e3e353d
updated readme
2013-07-21 10:09:47 +01:00
Sergey Lyubka
c70b80e4e1
marketing for LSP added
2013-07-20 15:30:00 +01:00
Sergey Lyubka
cba4c9d85d
removed travis icon
2013-07-20 15:26:05 +01:00
Sergey Lyubka
3e588065dc
removed
2013-07-20 15:25:39 +01:00
Sergey Lyubka
35cb27dbe6
Always use absolute path for document_root. If relative path is used, it is relative to mongoose.exe directory. See https://github.com/valenok/mongoose/issues/181
2013-07-20 14:11:05 +01:00
Sergey Lyubka
d6b9f76e9c
Added COPT to CFLAGS
2013-07-20 14:08:06 +01:00
Sergey Lyubka
a9d51c0e87
squashed warning
2013-07-20 11:33:34 +01:00
Sergey Lyubka
4b163232e3
fixed docstring for mg_get_valid_option_names
2013-07-20 07:12:49 +01:00
Sergey Lyubka
e003236a03
Made SSI #include file= relative to the current doc, as per spec
2013-07-19 07:57:47 +01:00
Sergey Lyubka
de7745370c
Merge pull request #200 from ejohnstown/master
...
Allow no SSL_CERTIFICATE when using init_ssl callback.
2013-07-18 23:35:16 -07:00
Sergey Lyubka
21786eec8e
Changed int -> SOCKET where appropriate, per Ben Currie
2013-07-18 18:17:48 +01:00
Sergey Lyubka
036b213b2b
Added connection-specific conn_data pointer to struct mg_request_info
2013-07-18 17:31:16 +01:00
John Safranek
61f5f0b725
Allow no SSL_CERTIFICATE when using init_ssl callback.
2013-07-17 16:37:28 -07:00
Sergey Lyubka
d864d72470
On windows, enclosing path to CGI script in quotes to allow paths with spaces
2013-07-17 08:24:52 +01:00
Sergey Lyubka
7ca5962d2d
in pull_all() and read_request(), respect ctx->stop_flag()
2013-07-16 17:17:36 +01:00
Sergey Lyubka
8ce1562f0d
Using SetHandleInformation() to make socket handles on Windows non-inheritable
2013-07-16 15:52:40 +01:00
Sergey Lyubka
49d9016275
For lua, let mg.read() read only if the data is there.
2013-07-16 13:56:00 +01:00
Sergey Lyubka
cdc7380d00
3.8 -> 3.9
2013-07-16 08:13:00 +01:00
Sergey Lyubka
e645b33b6c
using mg.read() only for POST requests
2013-07-16 07:53:08 +01:00
Sergey Lyubka
30f71a8bc4
Added description for the connect() socket interface
2013-07-16 07:24:39 +01:00
Sergey Lyubka
faa030385c
Removing extra SSL_shutdown() call.
2013-07-15 18:20:16 +01:00
Sergey Lyubka
feb3b5db96
Using $(FLAGS) for cocoa target
2013-07-15 10:52:27 +01:00
Sergey Lyubka
508b67d6f5
Removed /Gd from windows compilation flags, cause that breaks sqlite3 + fts (qsort callback is __cdecl, not __stdcall)
2013-07-15 10:41:47 +01:00
Sergey Lyubka
133aec777d
Added enable_keep_alive description
2013-07-15 10:32:52 +01:00
Sergey Lyubka
389ed4e099
Enabling FTS in sqlite
2013-07-15 10:28:52 +01:00
Sergey Lyubka
bc40aa5442
fixed strtoll() for win32: using _atoi64
2013-07-14 12:49:24 +01:00
Sergey Lyubka
5fb9aca2e1
Added -mmacosx-version-min for macos build
2013-07-12 12:39:19 +01:00
Sergey Lyubka
c68df310b8
Added mg_websocket_write(), per morgan3d pull request
2013-07-12 12:25:25 +01:00
Sergey Lyubka
70ce6c5ad3
Added comments to read_websocket(), per morgan3d pull request
2013-07-12 11:55:52 +01:00