aboutsummaryrefslogtreecommitdiff
path: root/w32/common
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-17 11:30:06 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-05-17 14:57:57 +0300
commit5d28b72d6991416cb954a0b7d077565f3158810b (patch)
treed98e314c1d6efc3785675f5882d81d61966eb1e1 /w32/common
parent129e28d390d5163384ef175fe4ad41735144c699 (diff)
downloadlibmicrohttpd-5d28b72d6991416cb954a0b7d077565f3158810b.tar.gz
libmicrohttpd-5d28b72d6991416cb954a0b7d077565f3158810b.zip
W32 projects: updated custom MHD_config.h
Diffstat (limited to 'w32/common')
-rw-r--r--w32/common/MHD_config.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/w32/common/MHD_config.h b/w32/common/MHD_config.h
index 2c51237a..7a658d7b 100644
--- a/w32/common/MHD_config.h
+++ b/w32/common/MHD_config.h
@@ -43,9 +43,15 @@
43/* The size of `tv_sec' member of `struct timeval', as computed by sizeof */ 43/* The size of `tv_sec' member of `struct timeval', as computed by sizeof */
44#define SIZEOF_STRUCT_TIMEVAL_TV_SEC 4 44#define SIZEOF_STRUCT_TIMEVAL_TV_SEC 4
45 45
46/* The size of `int64_t', as computed by sizeof. */
47#define SIZEOF_INT64_T 8
48
46/* The size of `uint64_t', as computed by sizeof. */ 49/* The size of `uint64_t', as computed by sizeof. */
47#define SIZEOF_UINT64_T 8 50#define SIZEOF_UINT64_T 8
48 51
52/* The size of `int', as computed by sizeof. */
53#define SIZEOF_INT 4
54
49/* The size of `unsigned int', as computed by sizeof. */ 55/* The size of `unsigned int', as computed by sizeof. */
50#define SIZEOF_UNSIGNED_INT 4 56#define SIZEOF_UNSIGNED_INT 4
51 57
@@ -77,6 +83,9 @@
77/* Enable HTTP Upgrade support. */ 83/* Enable HTTP Upgrade support. */
78#define UPGRADE_SUPPORT 1 84#define UPGRADE_SUPPORT 1
79 85
86/* Enable HTTP cookie parsing support. */
87#define COOKIE_SUPPORT 1
88
80/* *** OS features *** */ 89/* *** OS features *** */
81 90
82/* Provides IPv6 headers */ 91/* Provides IPv6 headers */