aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
authorsilvioprog <silvioprog@gmail.com>2017-03-07 10:42:20 -0300
committersilvioprog <silvioprog@gmail.com>2017-03-07 10:42:20 -0300
commitfe7582e526243a477ebfee57f4733a1cb3627eb1 (patch)
treef4ffcd4d208c1f27c72e2be0d3965964b573eee4 /src/include/microhttpd.h
parent3e224bd92598759321b05cea9e1dc3bd548fdf8f (diff)
downloadlibmicrohttpd-fe7582e526243a477ebfee57f4733a1cb3627eb1.tar.gz
libmicrohttpd-fe7582e526243a477ebfee57f4733a1cb3627eb1.zip
Updates the MHD_OPTION_URI_LOG_CALLBACK's documentation.
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 73d5da2f..c887b714 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1247,9 +1247,13 @@ enum MHD_OPTION
1247 * be the 0-terminated URI of the request. 1247 * be the 0-terminated URI of the request.
1248 * 1248 *
1249 * Note that during the time of this call, most of the connection's 1249 * Note that during the time of this call, most of the connection's
1250 * state is not initialized (as we have not yet parsed he headers). 1250 * state is not initialized (as we have not yet parsed the headers).
1251 * However, information about the connecting client (IP, socket) 1251 * However, information about the connecting client (IP, socket)
1252 * is available. 1252 * is available.
1253 *
1254 * The specified function is called only once per request, therefore some
1255 * programmers may use it to instantiate their own request objects, freeing
1256 * them in the notifier #MHD_OPTION_NOTIFY_COMPLETED.
1253 */ 1257 */
1254 MHD_OPTION_URI_LOG_CALLBACK = 7, 1258 MHD_OPTION_URI_LOG_CALLBACK = 7,
1255 1259