aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/connection.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/daemon/connection.h')
-rw-r--r--src/daemon/connection.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/daemon/connection.h b/src/daemon/connection.h
index a1763b55..75d26293 100644
--- a/src/daemon/connection.h
+++ b/src/daemon/connection.h
@@ -44,7 +44,7 @@ MHD_connection_get_fdset (struct MHD_Connection *connection,
44 * determined that there is data to be read off a socket. All implementations 44 * determined that there is data to be read off a socket. All implementations
45 * (multithreaded, external select, internal select) call this function 45 * (multithreaded, external select, internal select) call this function
46 * to handle reads. 46 * to handle reads.
47 * 47 *
48 * @return MHD_YES if we should continue to process the 48 * @return MHD_YES if we should continue to process the
49 * connection (not dead yet), MHD_NO if it died 49 * connection (not dead yet), MHD_NO if it died
50 */ 50 */
@@ -56,7 +56,7 @@ int MHD_connection_handle_read (struct MHD_Connection *connection);
56 * determined that the socket can be written to. If there is no data 56 * determined that the socket can be written to. If there is no data
57 * to be written, however, the function call does nothing. All implementations 57 * to be written, however, the function call does nothing. All implementations
58 * (multithreaded, external select, internal select) call this function 58 * (multithreaded, external select, internal select) call this function
59 * 59 *
60 * @return MHD_YES if we should continue to process the 60 * @return MHD_YES if we should continue to process the
61 * connection (not dead yet), MHD_NO if it died 61 * connection (not dead yet), MHD_NO if it died
62 */ 62 */
@@ -68,11 +68,10 @@ int MHD_connection_handle_write (struct MHD_Connection *connection);
68 * has to happen even if the socket cannot be read or written to. All 68 * has to happen even if the socket cannot be read or written to. All
69 * implementations (multithreaded, external select, internal select) 69 * implementations (multithreaded, external select, internal select)
70 * call this function. 70 * call this function.
71 * 71 *
72 * @return MHD_YES if we should continue to process the 72 * @return MHD_YES if we should continue to process the
73 * connection (not dead yet), MHD_NO if it died 73 * connection (not dead yet), MHD_NO if it died
74 */ 74 */
75int 75int MHD_connection_handle_idle (struct MHD_Connection *connection);
76MHD_connection_handle_idle (struct MHD_Connection *connection); 76
77
78#endif 77#endif