libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit fdf24fa69fb92db404db45f37563729947c9e380
parent bae7dc05a841adfd7788076c83c7c02aa3c57046
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue,  8 Nov 2016 00:21:02 +0300

Fixed descriptions in comments

Diffstat:
Msrc/include/microhttpd.h | 6++----
Msrc/microhttpd/internal.h | 3+--
2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -522,7 +522,7 @@ struct MHD_PostProcessor; * * Starting the daemon may also fail if a particular option is not * implemented or not supported on the target platform (i.e. no - * support for SSL, threads or IPv6). + * support for TLS, epoll or IPv6). */ enum MHD_FLAG { @@ -1995,9 +1995,7 @@ MHD_queue_response (struct MHD_Connection *connection, /** * Suspend handling of network data for a given connection. This can - * be used to dequeue a connection from MHD's event loop (external - * select, internal select or thread pool; not applicable to - * thread-per-connection!) for a while. + * be used to dequeue a connection from MHD's event loop for a while. * * If you use this API in conjunction with a internal select or a * thread pool, you must set the option #MHD_USE_ITC to diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h @@ -890,8 +890,7 @@ struct MHD_Connection #ifdef UPGRADE_SUPPORT /** - * If this connection was upgraded and if we are using - * #MHD_USE_THREAD_PER_CONNECTION or #MHD_USE_TLS, this points to + * If this connection was upgraded, this points to * the upgrade response details such that the * #thread_main_connection_upgrade()-logic can perform the * bi-directional forwarding.