aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/connection.h')
-rw-r--r--src/microhttpd/connection.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/microhttpd/connection.h b/src/microhttpd/connection.h
index b21029e6..50816ce2 100644
--- a/src/microhttpd/connection.h
+++ b/src/microhttpd/connection.h
@@ -89,13 +89,15 @@ MHD_set_http_callbacks_ (struct MHD_Connection *connection);
89/** 89/**
90 * This function handles a particular connection when it has been 90 * This function handles a particular connection when it has been
91 * determined that there is data to be read off a socket. All 91 * determined that there is data to be read off a socket. All
92 * implementations (multithreaded, external select, internal select) 92 * implementations (multithreaded, external polling, internal polling)
93 * call this function to handle reads. 93 * call this function to handle reads.
94 * 94 *
95 * @param connection connection to handle 95 * @param connection connection to handle
96 * @param socket_error set to true if socket error was detected
96 */ 97 */
97void 98void
98MHD_connection_handle_read (struct MHD_Connection *connection); 99MHD_connection_handle_read (struct MHD_Connection *connection,
100 bool socket_error);
99 101
100 102
101/** 103/**