add another standard header

This commit is contained in:
Christian Grothoff
2013-09-18 13:13:59 +00:00
parent 017c372418
commit fe4fa4d3c2
5 changed files with 8 additions and 4 deletions
+3
View File
@@ -1,3 +1,6 @@
Wed Sep 18 14:31:35 CEST 2013
Adding #define MHD_HTTP_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN. -CG
Tue Sep 17 21:32:47 CEST 2013
Also pass MHD connection handle in URI log callback. -CG
+2 -1
View File
@@ -121,7 +121,7 @@ extern "C"
* Current version of the library.
* 0x01093001 = 1.9.30-1.
*/
#define MHD_VERSION 0x00093001
#define MHD_VERSION 0x00093002
/**
* MHD-internal return code for "YES".
@@ -314,6 +314,7 @@ extern "C"
#define MHD_HTTP_HEADER_VIA "Via"
#define MHD_HTTP_HEADER_WARNING "Warning"
#define MHD_HTTP_HEADER_WWW_AUTHENTICATE "WWW-Authenticate"
#define MHD_HTTP_HEADER_ACCESS_CONTROL_ALLOW_ORIGIN "Access-Control-Allow-Origin"
/** @} */ /* end of group headers */
+1 -1
View File
@@ -1470,7 +1470,7 @@ process_request_body (struct MHD_Connection *connection)
, NULL
#endif
);
if (processed != 0)
if (0 != processed)
instant_retry = MHD_NO; /* client did not process everything */
used -= processed;
if (connection->have_chunked_upload == MHD_YES)
+1 -1
View File
@@ -401,7 +401,7 @@ testUnknownPortGet (int poll_flag)
if (di == NULL)
return 65536;
if (0 != getsockname(di->listen_fd, &addr, &addr_len))
if (0 != getsockname(di->listen_fd, (struct sockaddr *) &addr, &addr_len))
return 131072;
if (addr.sin_family != AF_INET)
+1 -1
View File
@@ -5,7 +5,7 @@
libmicrohttpd is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation; either version 2, or (at your
by the Free Software Foundation; either version 3, or (at your
option) any later version.
libmicrohttpd is distributed in the hope that it will be useful, but