diff options
author | Christian Grothoff <christian@grothoff.org> | 2007-08-10 23:32:57 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2007-08-10 23:32:57 +0000 |
commit | 71edae497964094f63bedb630d8bceb670ac660e (patch) | |
tree | 33732fa9d677876fd0477036a2670f67dfd7e8da | |
parent | ef352bdd85a2dbcab9c800b19b5d36f5c32e2196 (diff) | |
download | libmicrohttpd-71edae497964094f63bedb630d8bceb670ac660e.tar.gz libmicrohttpd-71edae497964094f63bedb630d8bceb670ac660e.zip |
logs
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | src/include/microhttpd.h | 4 |
2 files changed, 9 insertions, 2 deletions
@@ -1,6 +1,11 @@ | |||
1 | Fri Aug 10 17:31:23 MDT 2007 | ||
2 | Fixed problems with handling of responses created from | ||
3 | callbacks. Allowing accept policy callback to be NULL | ||
4 | (to accept from all). Added minimal fileserver example. -CG | ||
5 | |||
1 | Wed Aug 8 01:46:06 MDT 2007 | 6 | Wed Aug 8 01:46:06 MDT 2007 |
2 | Added pool allocation and connection limitations (total | 7 | Added pool allocation and connection limitations (total |
3 | number and memory size). | 8 | number and memory size). Released libmicrohttpd 0.0.0. - CG |
4 | 9 | ||
5 | Tue Jan 9 20:52:48 MST 2007 | 10 | Tue Jan 9 20:52:48 MST 2007 |
6 | Created project build files and updated API. - CG | 11 | Created project build files and updated API. - CG |
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h index 5efaca09..e678d4b1 100644 --- a/src/include/microhttpd.h +++ b/src/include/microhttpd.h | |||
@@ -442,7 +442,9 @@ typedef void | |||
442 | * @param flags combination of MHD_FLAG values | 442 | * @param flags combination of MHD_FLAG values |
443 | * @param port port to bind to | 443 | * @param port port to bind to |
444 | * @param apc callback to call to check which clients | 444 | * @param apc callback to call to check which clients |
445 | * will be allowed to connect | 445 | * will be allowed to connect; you can pass NULL |
446 | * in which case connections from any IP will be | ||
447 | * accepted | ||
446 | * @param apc_cls extra argument to apc | 448 | * @param apc_cls extra argument to apc |
447 | * @param dh default handler for all URIs | 449 | * @param dh default handler for all URIs |
448 | * @param dh_cls extra argument to dh | 450 | * @param dh_cls extra argument to dh |