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.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/microhttpd/connection.h b/src/microhttpd/connection.h
index 365e39b4..1520d46e 100644
--- a/src/microhttpd/connection.h
+++ b/src/microhttpd/connection.h
@@ -35,7 +35,7 @@
35 * 35 *
36 * @param connection connection to initialize 36 * @param connection connection to initialize
37 */ 37 */
38void 38void
39MHD_set_http_callbacks_ (struct MHD_Connection *connection); 39MHD_set_http_callbacks_ (struct MHD_Connection *connection);
40 40
41 41
@@ -49,7 +49,7 @@ MHD_set_http_callbacks_ (struct MHD_Connection *connection);
49 * @return always MHD_YES (we should continue to process the 49 * @return always MHD_YES (we should continue to process the
50 * connection) 50 * connection)
51 */ 51 */
52int 52int
53MHD_connection_handle_read (struct MHD_Connection *connection); 53MHD_connection_handle_read (struct MHD_Connection *connection);
54 54
55 55
@@ -63,7 +63,7 @@ MHD_connection_handle_read (struct MHD_Connection *connection);
63 * @return always MHD_YES (we should continue to process the 63 * @return always MHD_YES (we should continue to process the
64 * connection) 64 * connection)
65 */ 65 */
66int 66int
67MHD_connection_handle_write (struct MHD_Connection *connection); 67MHD_connection_handle_write (struct MHD_Connection *connection);
68 68
69 69
@@ -77,7 +77,7 @@ MHD_connection_handle_write (struct MHD_Connection *connection);
77 * @return MHD_YES if we should continue to process the 77 * @return MHD_YES if we should continue to process the
78 * connection (not dead yet), MHD_NO if it died 78 * connection (not dead yet), MHD_NO if it died
79 */ 79 */
80int 80int
81MHD_connection_handle_idle (struct MHD_Connection *connection); 81MHD_connection_handle_idle (struct MHD_Connection *connection);
82 82
83 83
@@ -88,7 +88,7 @@ MHD_connection_handle_idle (struct MHD_Connection *connection);
88 * @param connection connection to close 88 * @param connection connection to close
89 * @param termination_code termination reason to give 89 * @param termination_code termination reason to give
90 */ 90 */
91void 91void HIDDEN_SYMBOL
92MHD_connection_close (struct MHD_Connection *connection, 92MHD_connection_close (struct MHD_Connection *connection,
93 enum MHD_RequestTerminationCode termination_code); 93 enum MHD_RequestTerminationCode termination_code);
94 94
@@ -101,7 +101,7 @@ MHD_connection_close (struct MHD_Connection *connection,
101 * @param connection connection to process 101 * @param connection connection to process
102 * @return MHD_YES if we should continue to process the 102 * @return MHD_YES if we should continue to process the
103 * connection (not dead yet), MHD_NO if it died 103 * connection (not dead yet), MHD_NO if it died
104 */ 104 */
105int 105int
106MHD_connection_epoll_update_ (struct MHD_Connection *connection); 106MHD_connection_epoll_update_ (struct MHD_Connection *connection);
107#endif 107#endif