aboutsummaryrefslogtreecommitdiff
path: root/src/include/microhttpd.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-11-10 12:40:22 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-11-10 12:40:22 +0300
commit5cf4c61bb0c004ea3d82fddcfe338839b8a2ac86 (patch)
tree918a9b3974e44a90aaa52b21c5fe3b7d3c92c4bd /src/include/microhttpd.h
parent475cfd18d10d3aa76faa64da2f958632a097c350 (diff)
downloadlibmicrohttpd-5cf4c61bb0c004ea3d82fddcfe338839b8a2ac86.tar.gz
libmicrohttpd-5cf4c61bb0c004ea3d82fddcfe338839b8a2ac86.zip
microhttpd.h: doxy comments fixes
Diffstat (limited to 'src/include/microhttpd.h')
-rw-r--r--src/include/microhttpd.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 43910bc1..483f2fb1 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -1562,7 +1562,7 @@ enum MHD_OPTION
1562 * This option should be followed by TWO pointers. First a pointer 1562 * This option should be followed by TWO pointers. First a pointer
1563 * to a function of type #MHD_RequestCompletedCallback and second a 1563 * to a function of type #MHD_RequestCompletedCallback and second a
1564 * pointer to a closure to pass to the request completed callback. 1564 * pointer to a closure to pass to the request completed callback.
1565 * The second pointer maybe NULL. 1565 * The second pointer may be NULL.
1566 */ 1566 */
1567 MHD_OPTION_NOTIFY_COMPLETED = 4, 1567 MHD_OPTION_NOTIFY_COMPLETED = 4,
1568 1568
@@ -1817,7 +1817,7 @@ enum MHD_OPTION
1817 * This option should be followed by TWO pointers. First a pointer 1817 * This option should be followed by TWO pointers. First a pointer
1818 * to a function of type #MHD_NotifyConnectionCallback and second a 1818 * to a function of type #MHD_NotifyConnectionCallback and second a
1819 * pointer to a closure to pass to the request completed callback. 1819 * pointer to a closure to pass to the request completed callback.
1820 * The second pointer maybe NULL. 1820 * The second pointer may be NULL.
1821 */ 1821 */
1822 MHD_OPTION_NOTIFY_CONNECTION = 27, 1822 MHD_OPTION_NOTIFY_CONNECTION = 27,
1823 1823
@@ -2583,7 +2583,7 @@ typedef void
2583 2583
2584/** 2584/**
2585 * Iterator over key-value pairs where the value 2585 * Iterator over key-value pairs where the value
2586 * maybe made available in increments and/or may 2586 * may be made available in increments and/or may
2587 * not be zero-terminated. Used for processing 2587 * not be zero-terminated. Used for processing
2588 * POST data. 2588 * POST data.
2589 * 2589 *
@@ -3004,7 +3004,7 @@ MHD_run_from_select (struct MHD_Daemon *daemon,
3004 * @param connection connection to get values from 3004 * @param connection connection to get values from
3005 * @param kind types of values to iterate over, can be a bitmask 3005 * @param kind types of values to iterate over, can be a bitmask
3006 * @param iterator callback to call on each header; 3006 * @param iterator callback to call on each header;
3007 * maybe NULL (then just count headers) 3007 * may be NULL (then just count headers)
3008 * @param iterator_cls extra argument to @a iterator 3008 * @param iterator_cls extra argument to @a iterator
3009 * @return number of entries iterated over, 3009 * @return number of entries iterated over,
3010 * -1 if connection is NULL. 3010 * -1 if connection is NULL.
@@ -3023,7 +3023,7 @@ MHD_get_connection_values (struct MHD_Connection *connection,
3023 * @param connection connection to get values from 3023 * @param connection connection to get values from
3024 * @param kind types of values to iterate over, can be a bitmask 3024 * @param kind types of values to iterate over, can be a bitmask
3025 * @param iterator callback to call on each header; 3025 * @param iterator callback to call on each header;
3026 * maybe NULL (then just count headers) 3026 * may be NULL (then just count headers)
3027 * @param iterator_cls extra argument to @a iterator 3027 * @param iterator_cls extra argument to @a iterator
3028 * @return number of entries iterated over, 3028 * @return number of entries iterated over,
3029 * -1 if connection is NULL. 3029 * -1 if connection is NULL.
@@ -3383,7 +3383,7 @@ MHD_create_response_from_callback (uint64_t size,
3383 * @param data the data itself 3383 * @param data the data itself
3384 * @param must_free libmicrohttpd should free data when done 3384 * @param must_free libmicrohttpd should free data when done
3385 * @param must_copy libmicrohttpd must make a copy of @a data 3385 * @param must_copy libmicrohttpd must make a copy of @a data
3386 * right away, the data maybe released anytime after 3386 * right away, the data may be released anytime after
3387 * this call returns 3387 * this call returns
3388 * @return NULL on error (i.e. invalid arguments, out of memory) 3388 * @return NULL on error (i.e. invalid arguments, out of memory)
3389 * @deprecated use #MHD_create_response_from_buffer instead 3389 * @deprecated use #MHD_create_response_from_buffer instead
@@ -3931,7 +3931,7 @@ MHD_del_response_header (struct MHD_Response *response,
3931 * 3931 *
3932 * @param response response to query 3932 * @param response response to query
3933 * @param iterator callback to call on each header; 3933 * @param iterator callback to call on each header;
3934 * maybe NULL (then just count headers) 3934 * may be NULL (then just count headers)
3935 * @param iterator_cls extra argument to @a iterator 3935 * @param iterator_cls extra argument to @a iterator
3936 * @return number of entries iterated over 3936 * @return number of entries iterated over
3937 * @ingroup response 3937 * @ingroup response