aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index b540a1fc..adf2c660 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -116,8 +116,12 @@ enum MHD_EpollState
116 /** 116 /**
117 * Is this connection currently in the 'epoll' set? 117 * Is this connection currently in the 'epoll' set?
118 */ 118 */
119 MHD_EPOLL_STATE_IN_EPOLL_SET = 8 119 MHD_EPOLL_STATE_IN_EPOLL_SET = 8,
120 120
121 /**
122 * Is this connection currently suspended?
123 */
124 MHD_EPOLL_STATE_SUSPENDED = 16
121 }; 125 };
122 126
123 127
@@ -452,7 +456,7 @@ enum MHD_CONNECTION_STATE
452 * Handshake messages will be processed in this state & while 456 * Handshake messages will be processed in this state & while
453 * in the 'MHD_TLS_HELLO_REQUEST' state 457 * in the 'MHD_TLS_HELLO_REQUEST' state
454 */ 458 */
455 MHD_TLS_CONNECTION_INIT = MHD_CONNECTION_CLOSED + 1 459 MHD_TLS_CONNECTION_INIT = MHD_CONNECTION_IN_CLEANUP + 1
456 460
457}; 461};
458 462