aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-01-10 15:58:49 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-06-20 22:59:07 +0300
commit9141692ad5b1e50c414d1f0cd1eef39a5f30b087 (patch)
tree22e775315b0a2cda17460d8a522bd438f77209cd /src/microhttpd/internal.h
parentb483c0f6d336c47b4043b67230b841524daa46f6 (diff)
downloadlibmicrohttpd-9141692ad5b1e50c414d1f0cd1eef39a5f30b087.tar.gz
libmicrohttpd-9141692ad5b1e50c414d1f0cd1eef39a5f30b087.zip
Renamed connection state for clarity
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 53f71a5f..4f991140 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -624,12 +624,12 @@ enum MHD_CONNECTION_STATE
624 /** 624 /**
625 * We got the URL (and request type and version). Wait for a header line. 625 * We got the URL (and request type and version). Wait for a header line.
626 */ 626 */
627 MHD_CONNECTION_URL_RECEIVED = MHD_CONNECTION_REQ_LINE_RECEIVING + 1, 627 MHD_CONNECTION_REQ_LINE_RECEIVED = MHD_CONNECTION_REQ_LINE_RECEIVING + 1,
628 628
629 /** 629 /**
630 * We got part of a multi-line request header. Wait for the rest. 630 * We got part of a multi-line request header. Wait for the rest.
631 */ 631 */
632 MHD_CONNECTION_HEADER_PART_RECEIVED = MHD_CONNECTION_URL_RECEIVED + 1, 632 MHD_CONNECTION_HEADER_PART_RECEIVED = MHD_CONNECTION_REQ_LINE_RECEIVED + 1,
633 633
634 /** 634 /**
635 * We got the request headers. Process them. 635 * We got the request headers. Process them.