aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-31 19:21:38 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-31 20:19:13 +0300
commit92bfeb762ec316d27172cb0c3a3e272dff25a25c (patch)
tree1a0cc8259886e628be77fcb3b578bdb81f38293a
parentb3b131c6b96fd9a83c7cc6dbc34f9f86774a0efb (diff)
downloadlibmicrohttpd-92bfeb762ec316d27172cb0c3a3e272dff25a25c.tar.gz
libmicrohttpd-92bfeb762ec316d27172cb0c3a3e272dff25a25c.zip
MHD_get_timeout*(): improved doxy
-rw-r--r--src/include/microhttpd.h4
-rw-r--r--src/microhttpd/daemon.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 92a9278f..dcbc7701 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -2915,7 +2915,7 @@ MHD_get_fdset2 (struct MHD_Daemon *daemon,
2915 * polling function. 2915 * polling function.
2916 * 2916 *
2917 * @param daemon daemon to query for timeout 2917 * @param daemon daemon to query for timeout
2918 * @param timeout set to the timeout (in milliseconds) 2918 * @param[out] timeout set to the timeout (in milliseconds)
2919 * @return #MHD_YES on success, #MHD_NO if timeouts are 2919 * @return #MHD_YES on success, #MHD_NO if timeouts are
2920 * not used and no data processing is pending. 2920 * not used and no data processing is pending.
2921 * @ingroup event 2921 * @ingroup event
@@ -2952,7 +2952,7 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
2952 * polling function. 2952 * polling function.
2953 * 2953 *
2954 * @param daemon daemon to query for timeout 2954 * @param daemon daemon to query for timeout
2955 * @param timeout64 the pointer to the variable to be set to the 2955 * @param[out] timeout64 the pointer to the variable to be set to the
2956 * timeout (in milliseconds) 2956 * timeout (in milliseconds)
2957 * @return #MHD_YES if timeout value has been set, 2957 * @return #MHD_YES if timeout value has been set,
2958 * #MHD_NO if timeouts are not used and no data processing is pending. 2958 * #MHD_NO if timeouts are not used and no data processing is pending.
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 8308e6ef..9af79678 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -3917,7 +3917,7 @@ MHD_cleanup_connections (struct MHD_Daemon *daemon)
3917 * daemon's select()/poll()/etc. 3917 * daemon's select()/poll()/etc.
3918 * 3918 *
3919 * @param daemon daemon to query for timeout 3919 * @param daemon daemon to query for timeout
3920 * @param timeout set to the timeout (in milliseconds) 3920 * @param[out] timeout set to the timeout (in milliseconds)
3921 * @return #MHD_YES on success, #MHD_NO if timeouts are 3921 * @return #MHD_YES on success, #MHD_NO if timeouts are
3922 * not used and no data processing is pending. 3922 * not used and no data processing is pending.
3923 * @ingroup event 3923 * @ingroup event
@@ -3969,7 +3969,7 @@ MHD_get_timeout (struct MHD_Daemon *daemon,
3969 * daemon's select()/poll()/etc. 3969 * daemon's select()/poll()/etc.
3970 * 3970 *
3971 * @param daemon daemon to query for timeout 3971 * @param daemon daemon to query for timeout
3972 * @param timeout64 the pointer to the variable to be set to the 3972 * @param[out] timeout64 the pointer to the variable to be set to the
3973 * timeout (in milliseconds) 3973 * timeout (in milliseconds)
3974 * @return #MHD_YES if timeout value has been set, 3974 * @return #MHD_YES if timeout value has been set,
3975 * #MHD_NO if timeouts are not used and no data processing is pending. 3975 * #MHD_NO if timeouts are not used and no data processing is pending.