aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-10-30 16:57:29 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2021-10-30 17:31:30 +0300
commit104fc2633bc4b2983faedccdcd3597324dfa7b1f (patch)
tree5bf0cace376543bce91b350f2e389d35eb85ef34
parent50b44dcf9e1ad2d8865324c404271319916e2d4e (diff)
downloadlibmicrohttpd-104fc2633bc4b2983faedccdcd3597324dfa7b1f.tar.gz
libmicrohttpd-104fc2633bc4b2983faedccdcd3597324dfa7b1f.zip
microhttpd.h: fixed typo in doxy
-rw-r--r--src/include/microhttpd.h6
-rw-r--r--src/microhttpd/daemon.c8
2 files changed, 7 insertions, 7 deletions
diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h
index 39d5013f..df223a6a 100644
--- a/src/include/microhttpd.h
+++ b/src/include/microhttpd.h
@@ -2719,7 +2719,7 @@ MHD_add_connection (struct MHD_Daemon *daemon,
2719 * before calling this function. FD_SETSIZE is assumed 2719 * before calling this function. FD_SETSIZE is assumed
2720 * to be platform's default. 2720 * to be platform's default.
2721 * 2721 *
2722 * This function should only be called in when MHD is configured to 2722 * This function should only be called only when MHD is configured to
2723 * use "external" sockets polling with 'select()' or with 'epoll'. 2723 * use "external" sockets polling with 'select()' or with 'epoll'.
2724 * In the latter case, it will only add the single 'epoll' file 2724 * In the latter case, it will only add the single 'epoll' file
2725 * descriptor used by MHD to the sets. 2725 * descriptor used by MHD to the sets.
@@ -2760,7 +2760,7 @@ MHD_get_fdset (struct MHD_Daemon *daemon,
2760 * Passing custom FD_SETSIZE as @a fd_setsize allow usage of 2760 * Passing custom FD_SETSIZE as @a fd_setsize allow usage of
2761 * larger/smaller than platform's default fd_sets. 2761 * larger/smaller than platform's default fd_sets.
2762 * 2762 *
2763 * This function should only be called in when MHD is configured to 2763 * This function should only be called only when MHD is configured to
2764 * use "external" sockets polling with 'select()' or with 'epoll'. 2764 * use "external" sockets polling with 'select()' or with 'epoll'.
2765 * In the latter case, it will only add the single 'epoll' file 2765 * In the latter case, it will only add the single 'epoll' file
2766 * descriptor used by MHD to the sets. 2766 * descriptor used by MHD to the sets.
@@ -2801,7 +2801,7 @@ MHD_get_fdset2 (struct MHD_Daemon *daemon,
2801 * before calling this function. Size of fd_set is 2801 * before calling this function. Size of fd_set is
2802 * determined by current value of FD_SETSIZE. 2802 * determined by current value of FD_SETSIZE.
2803 * 2803 *
2804 * This function should only be called in when MHD is configured to 2804 * This function should only be called only when MHD is configured to
2805 * use "external" sockets polling with 'select()' or with 'epoll'. 2805 * use "external" sockets polling with 'select()' or with 'epoll'.
2806 * In the latter case, it will only add the single 'epoll' file 2806 * In the latter case, it will only add the single 'epoll' file
2807 * descriptor used by MHD to the sets. 2807 * descriptor used by MHD to the sets.
diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index d022247d..1c115657 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -700,8 +700,8 @@ MHD_TLS_init (struct MHD_Daemon *daemon)
700 * before calling this function. FD_SETSIZE is assumed 700 * before calling this function. FD_SETSIZE is assumed
701 * to be platform's default. 701 * to be platform's default.
702 * 702 *
703 * This function should only be called in when MHD is configured to 703 * This function should only be called only when MHD is configured to
704 * use external select with 'select()' or with 'epoll'. 704 * use "external" sockets polling with 'select()' or with 'epoll'.
705 * In the latter case, it will only add the single 'epoll' file 705 * In the latter case, it will only add the single 'epoll' file
706 * descriptor used by MHD to the sets. 706 * descriptor used by MHD to the sets.
707 * It's necessary to use #MHD_get_timeout() to get maximum timeout 707 * It's necessary to use #MHD_get_timeout() to get maximum timeout
@@ -1107,8 +1107,8 @@ internal_get_fdset2 (struct MHD_Daemon *daemon,
1107 * Passing custom FD_SETSIZE as @a fd_setsize allow usage of 1107 * Passing custom FD_SETSIZE as @a fd_setsize allow usage of
1108 * larger/smaller than platform's default fd_sets. 1108 * larger/smaller than platform's default fd_sets.
1109 * 1109 *
1110 * This function should only be called in when MHD is configured to 1110 * This function should only be called only when MHD is configured to
1111 * use external select with 'select()' or with 'epoll'. 1111 * use "external" sockets polling with 'select()' or with 'epoll'.
1112 * In the latter case, it will only add the single 'epoll' file 1112 * In the latter case, it will only add the single 'epoll' file
1113 * descriptor used by MHD to the sets. 1113 * descriptor used by MHD to the sets.
1114 * It's necessary to use #MHD_get_timeout() to get maximum timeout 1114 * It's necessary to use #MHD_get_timeout() to get maximum timeout