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, 7 insertions, 1 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index a2a454f1..ae91719e 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -569,9 +569,15 @@ enum MHD_CONNECTION_STATE
569 MHD_CONNECTION_INIT = 0, 569 MHD_CONNECTION_INIT = 0,
570 570
571 /** 571 /**
572 * Part of the request line was received.
573 * Wait for complete line.
574 */
575 MHD_CONNECTION_REQ_LINE_RECEIVING = MHD_CONNECTION_INIT + 1,
576
577 /**
572 * We got the URL (and request type and version). Wait for a header line. 578 * We got the URL (and request type and version). Wait for a header line.
573 */ 579 */
574 MHD_CONNECTION_URL_RECEIVED = MHD_CONNECTION_INIT + 1, 580 MHD_CONNECTION_URL_RECEIVED = MHD_CONNECTION_REQ_LINE_RECEIVING + 1,
575 581
576 /** 582 /**
577 * We got part of a multi-line request header. Wait for the rest. 583 * We got part of a multi-line request header. Wait for the rest.