aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index d06c0f92..84d1cacf 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1091,7 +1091,7 @@ typedef int
1091 * with plenty of upload data) this allows the application 1091 * with plenty of upload data) this allows the application
1092 * to easily associate some request-specific state. 1092 * to easily associate some request-specific state.
1093 * If necessary, this state can be cleaned up in the 1093 * If necessary, this state can be cleaned up in the
1094 * global #MHD_RequestCompleted callback (which 1094 * global #MHD_RequestCompletedCallback (which
1095 * can be set with the #MHD_OPTION_NOTIFY_COMPLETED). 1095 * can be set with the #MHD_OPTION_NOTIFY_COMPLETED).
1096 * Initially, `*con_cls` will be NULL. 1096 * Initially, `*con_cls` will be NULL.
1097 * @return #MHD_YES if the connection was handled successfully, 1097 * @return #MHD_YES if the connection was handled successfully,
@@ -1764,7 +1764,7 @@ enum MHD_UpgradeEventMask
1764 * the local platform), to wait for the 'external' select loop to 1764 * the local platform), to wait for the 'external' select loop to
1765 * trigger another round. It is also possible to specify "no events" 1765 * trigger another round. It is also possible to specify "no events"
1766 * to terminate the connection; in this case, the 1766 * to terminate the connection; in this case, the
1767 * MHD_RequestCompletedCallback will be called and all resources of 1767 * #MHD_RequestCompletedCallback will be called and all resources of
1768 * the connection will be released. 1768 * the connection will be released.
1769 * 1769 *
1770 * Except when in 'thread-per-connection' mode, implementations 1770 * Except when in 'thread-per-connection' mode, implementations
@@ -1777,7 +1777,7 @@ enum MHD_UpgradeEventMask
1777 * to inspect the original HTTP request 1777 * to inspect the original HTTP request
1778 * @param con_cls value as set by the last call to the 1778 * @param con_cls value as set by the last call to the
1779 * MHD_AccessHandlerCallback; will afterwards 1779 * MHD_AccessHandlerCallback; will afterwards
1780 * be also given to the MHD_RequestCompletedCallback 1780 * be also given to the #MHD_RequestCompletedCallback
1781 * @param data_in_size available data for reading, set to data read 1781 * @param data_in_size available data for reading, set to data read
1782 * @param data_in data read from the socket 1782 * @param data_in data read from the socket
1783 * @param data_out_size available buffer for writing, set to bytes 1783 * @param data_out_size available buffer for writing, set to bytes
@@ -1952,7 +1952,7 @@ MHD_create_post_processor (struct MHD_Connection *connection,
1952 * Parse and process POST data. Call this function when POST data is 1952 * Parse and process POST data. Call this function when POST data is
1953 * available (usually during an #MHD_AccessHandlerCallback) with the 1953 * available (usually during an #MHD_AccessHandlerCallback) with the
1954 * "upload_data" and "upload_data_size". Whenever possible, this will 1954 * "upload_data" and "upload_data_size". Whenever possible, this will
1955 * then cause calls to the #MHD_IncrementalKeyValueIterator. 1955 * then cause calls to the #MHD_PostDataIterator.
1956 * 1956 *
1957 * @param pp the post processor 1957 * @param pp the post processor
1958 * @param post_data @a post_data_len bytes of POST data 1958 * @param post_data @a post_data_len bytes of POST data