aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.c')
-rw-r--r--src/microhttpd/connection.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 84bfc662..2490a1fb 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -1757,7 +1757,6 @@ is_reply_body_needed (struct MHD_Connection *connection)
1757 * type and other. 1757 * type and other.
1758 * 1758 *
1759 * @param connection to connection to process 1759 * @param connection to connection to process
1760 * @param reply_body_allowed
1761 */ 1760 */
1762static void 1761static void
1763setup_reply_properties (struct MHD_Connection *connection) 1762setup_reply_properties (struct MHD_Connection *connection)
@@ -3844,7 +3843,9 @@ MHD_connection_handle_read (struct MHD_Connection *connection,
3844 3843
3845/** 3844/**
3846 * This function was created to handle writes to sockets when it has 3845 * This function was created to handle writes to sockets when it has
3847 * been determined that the socket can be written to. 3846 * been determined that the socket can be written to. All
3847 * implementations (multithreaded, external select, internal select)
3848 * call this function
3848 * 3849 *
3849 * @param connection connection to handle 3850 * @param connection connection to handle
3850 */ 3851 */
@@ -4400,6 +4401,8 @@ connection_reset (struct MHD_Connection *connection,
4400/** 4401/**
4401 * This function was created to handle per-connection processing that 4402 * This function was created to handle per-connection processing that
4402 * has to happen even if the socket cannot be read or written to. 4403 * has to happen even if the socket cannot be read or written to.
4404 * All implementations (multithreaded, external select, internal select)
4405 * call this function.
4403 * @remark To be called only from thread that process connection's 4406 * @remark To be called only from thread that process connection's
4404 * recv(), send() and response. 4407 * recv(), send() and response.
4405 * 4408 *