aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2017-03-25 20:41:47 +0100
committerChristian Grothoff <christian@grothoff.org>2017-03-25 20:55:32 +0100
commitbf7418b3d9288e9e0175651a9e3cf3297e197942 (patch)
treed90328d6b1294ef0697de8c3ea5d70a86a795eb7 /src/microhttpd/internal.h
parent8d9065a0774f4e07afdc21fd83d74e221a104c3d (diff)
downloadlibmicrohttpd-bf7418b3d9288e9e0175651a9e3cf3297e197942.tar.gz
libmicrohttpd-bf7418b3d9288e9e0175651a9e3cf3297e197942.zip
fix #4967
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 5350c013..1356e92e 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -863,13 +863,13 @@ struct MHD_Connection
863 * otherwise, this is the size of the current chunk. A value of 863 * otherwise, this is the size of the current chunk. A value of
864 * zero is also used when we're at the end of the chunks. 864 * zero is also used when we're at the end of the chunks.
865 */ 865 */
866 size_t current_chunk_size; 866 uint64_t current_chunk_size;
867 867
868 /** 868 /**
869 * If we are receiving with chunked encoding, where are we currently 869 * If we are receiving with chunked encoding, where are we currently
870 * with respect to the current chunk (at what offset / position)? 870 * with respect to the current chunk (at what offset / position)?
871 */ 871 */
872 size_t current_chunk_offset; 872 uint64_t current_chunk_offset;
873 873
874 /** 874 /**
875 * Handler used for processing read connection operations 875 * Handler used for processing read connection operations