aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2007-08-10 23:32:57 +0000
committerChristian Grothoff <christian@grothoff.org>2007-08-10 23:32:57 +0000
commit71edae497964094f63bedb630d8bceb670ac660e (patch)
tree33732fa9d677876fd0477036a2670f67dfd7e8da
parentef352bdd85a2dbcab9c800b19b5d36f5c32e2196 (diff)
downloadlibmicrohttpd-71edae497964094f63bedb630d8bceb670ac660e.tar.gz
libmicrohttpd-71edae497964094f63bedb630d8bceb670ac660e.zip
logs
-rw-r--r--ChangeLog7
-rw-r--r--src/include/microhttpd.h4
2 files changed, 9 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ee123097..5be3654e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
1Fri 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
1Wed Aug 8 01:46:06 MDT 2007 6Wed 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
5Tue Jan 9 20:52:48 MST 2007 10Tue 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