aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-21 09:30:09 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-10-22 09:48:06 +0300
commitdd7f9dfe91f01cd56db0d64fe01b05eecae6ee3a (patch)
tree93abd81ff53ca6262aa8d7407a82ef89bdedf42d /src/microhttpd/internal.h
parent9fef2196c6dbd8c54f4291bf80a4ced03de7660b (diff)
downloadlibmicrohttpd-dd7f9dfe91f01cd56db0d64fe01b05eecae6ee3a.tar.gz
libmicrohttpd-dd7f9dfe91f01cd56db0d64fe01b05eecae6ee3a.zip
Renamed one more 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 1565c21f..990552b7 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -649,12 +649,12 @@ enum MHD_CONNECTION_STATE
649 /** 649 /**
650 * We have sent 100 CONTINUE (or do not need to). Read the message body. 650 * We have sent 100 CONTINUE (or do not need to). Read the message body.
651 */ 651 */
652 MHD_CONNECTION_CONTINUE_SENT = MHD_CONNECTION_CONTINUE_SENDING + 1, 652 MHD_CONNECTION_BODY_RECEIVING = MHD_CONNECTION_CONTINUE_SENDING + 1,
653 653
654 /** 654 /**
655 * We got the request body. Wait for a line of the footer. 655 * We got the request body. Wait for a line of the footer.
656 */ 656 */
657 MHD_CONNECTION_BODY_RECEIVED = MHD_CONNECTION_CONTINUE_SENT + 1, 657 MHD_CONNECTION_BODY_RECEIVED = MHD_CONNECTION_BODY_RECEIVING + 1,
658 658
659 /** 659 /**
660 * We got part of a line of the footer. Wait for the 660 * We got part of a line of the footer. Wait for the