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.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 1c6ea40c..60d1862d 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -627,30 +627,30 @@ enum MHD_CONNECTION_STATE
627 MHD_CONNECTION_HEADERS_SENT = MHD_CONNECTION_HEADERS_SENDING + 1, 627 MHD_CONNECTION_HEADERS_SENT = MHD_CONNECTION_HEADERS_SENDING + 1,
628 628
629 /** 629 /**
630 * We are ready to send a part of a non-chunked body. Send it.
631 */
632 MHD_CONNECTION_NORMAL_BODY_READY = MHD_CONNECTION_HEADERS_SENT + 1,
633
634 /**
635 * We are waiting for the client to provide more 630 * We are waiting for the client to provide more
636 * data of a non-chunked body. 631 * data of a non-chunked body.
637 */ 632 */
638 MHD_CONNECTION_NORMAL_BODY_UNREADY = MHD_CONNECTION_NORMAL_BODY_READY + 1, 633 MHD_CONNECTION_NORMAL_BODY_UNREADY = MHD_CONNECTION_HEADERS_SENT + 1,
639 634
640 /** 635 /**
641 * We are ready to send a chunk. 636 * We are ready to send a part of a non-chunked body. Send it.
642 */ 637 */
643 MHD_CONNECTION_CHUNKED_BODY_READY = MHD_CONNECTION_NORMAL_BODY_UNREADY + 1, 638 MHD_CONNECTION_NORMAL_BODY_READY = MHD_CONNECTION_NORMAL_BODY_UNREADY + 1,
644 639
645 /** 640 /**
646 * We are waiting for the client to provide a chunk of the body. 641 * We are waiting for the client to provide a chunk of the body.
647 */ 642 */
648 MHD_CONNECTION_CHUNKED_BODY_UNREADY = MHD_CONNECTION_CHUNKED_BODY_READY + 1, 643 MHD_CONNECTION_CHUNKED_BODY_UNREADY = MHD_CONNECTION_NORMAL_BODY_READY + 1,
644
645 /**
646 * We are ready to send a chunk.
647 */
648 MHD_CONNECTION_CHUNKED_BODY_READY = MHD_CONNECTION_CHUNKED_BODY_UNREADY + 1,
649 649
650 /** 650 /**
651 * We have sent the response body. Prepare the footers. 651 * We have sent the response body. Prepare the footers.
652 */ 652 */
653 MHD_CONNECTION_BODY_SENT = MHD_CONNECTION_CHUNKED_BODY_UNREADY + 1, 653 MHD_CONNECTION_BODY_SENT = MHD_CONNECTION_CHUNKED_BODY_READY + 1,
654 654
655 /** 655 /**
656 * We have prepared the response footer. Send it. 656 * We have prepared the response footer. Send it.