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.h18
1 files changed, 7 insertions, 11 deletions
diff --git a/src/daemon/connection.h b/src/daemon/connection.h
index 840ae640..4955931d 100644
--- a/src/daemon/connection.h
+++ b/src/daemon/connection.h
@@ -35,19 +35,17 @@
35 * @return MHD_YES on success 35 * @return MHD_YES on success
36 */ 36 */
37int 37int
38MHD_connection_get_fdset(struct MHD_Connection * connection, 38MHD_connection_get_fdset (struct MHD_Connection *connection,
39 fd_set * read_fd_set, 39 fd_set * read_fd_set,
40 fd_set * write_fd_set, 40 fd_set * write_fd_set,
41 fd_set * except_fd_set, 41 fd_set * except_fd_set, int *max_fd);
42 int * max_fd);
43 42
44 43
45/** 44/**
46 * Call the handler of the application for this 45 * Call the handler of the application for this
47 * connection. 46 * connection.
48 */ 47 */
49void 48void MHD_call_connection_handler (struct MHD_Connection *connection);
50MHD_call_connection_handler(struct MHD_Connection * connection);
51 49
52/** 50/**
53 * This function handles a particular connection when it has been 51 * This function handles a particular connection when it has been
@@ -55,8 +53,7 @@ MHD_call_connection_handler(struct MHD_Connection * connection);
55 * (multithreaded, external select, internal select) call this function 53 * (multithreaded, external select, internal select) call this function
56 * to handle reads. 54 * to handle reads.
57 */ 55 */
58int 56int MHD_connection_handle_read (struct MHD_Connection *connection);
59MHD_connection_handle_read(struct MHD_Connection * connection);
60 57
61 58
62/** 59/**
@@ -65,8 +62,7 @@ MHD_connection_handle_read(struct MHD_Connection * connection);
65 * to be written, however, the function call does nothing. All implementations 62 * to be written, however, the function call does nothing. All implementations
66 * (multithreaded, external select, internal select) call this function 63 * (multithreaded, external select, internal select) call this function
67 */ 64 */
68int 65int MHD_connection_handle_write (struct MHD_Connection *connection);
69MHD_connection_handle_write(struct MHD_Connection * connection);
70 66
71 67
72#endif 68#endif