summaryrefslogtreecommitdiff
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,
* determined that there is data to be read off a socket. All implementations
* (multithreaded, external select, internal select) call this function
* to handle reads.
- *
+ *
* @return MHD_YES if we should continue to process the
* connection (not dead yet), MHD_NO if it died
*/
@@ -56,7 +56,7 @@ int MHD_connection_handle_read (struct MHD_Connection *connection);
* determined that the socket can be written to. If there is no data
* to be written, however, the function call does nothing. All implementations
* (multithreaded, external select, internal select) call this function
- *
+ *
* @return MHD_YES if we should continue to process the
* connection (not dead yet), MHD_NO if it died
*/
@@ -68,11 +68,10 @@ int MHD_connection_handle_write (struct MHD_Connection *connection);
* has to happen even if the socket cannot be read or written to. All
* implementations (multithreaded, external select, internal select)
* call this function.
- *
+ *
* @return MHD_YES if we should continue to process the
* connection (not dead yet), MHD_NO if it died
*/
-int
-MHD_connection_handle_idle (struct MHD_Connection *connection);
-
+int MHD_connection_handle_idle (struct MHD_Connection *connection);
+
#endif