aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-05-02 18:53:50 +0200
committerChristian Grothoff <christian@grothoff.org>2017-05-02 18:53:50 +0200
commit76cf7d7f5877a3ce0f3bb131aa6e6f420d5b98eb (patch)
tree687393473478fb8e70cba7a4eafc517268404d98 /src/microhttpd/internal.h
parent33f121a4f6a2d5d47c51d7cbf1d5a750ed369750 (diff)
downloadlibmicrohttpd-76cf7d7f5877a3ce0f3bb131aa6e6f420d5b98eb.tar.gz
libmicrohttpd-76cf7d7f5877a3ce0f3bb131aa6e6f420d5b98eb.zip
documentation, adding MHD_CONNECTION_INFO_REQUEST_HEADER_SIZE, releasing 0.9.54
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index aac13d6c..3595f105 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -748,6 +748,12 @@ struct MHD_Connection
748 size_t write_buffer_append_offset; 748 size_t write_buffer_append_offset;
749 749
750 /** 750 /**
751 * Number of bytes we had in the HTTP header, set once we
752 * pass #MHD_CONNECTION_HEADERS_RECEIVED.
753 */
754 size_t header_size;
755
756 /**
751 * How many more bytes of the body do we expect 757 * How many more bytes of the body do we expect
752 * to read? #MHD_SIZE_UNKNOWN for unknown. 758 * to read? #MHD_SIZE_UNKNOWN for unknown.
753 */ 759 */