diff options
author | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2024-02-01 06:39:45 +0100 |
---|---|---|
committer | Evgeny Grin (Karlson2k) <k2k@narod.ru> | 2024-02-01 06:39:45 +0100 |
commit | 9fe0cd9b2922acf5e73e037530e9c54ce0b9d0fc (patch) | |
tree | a3a4dbb1733e94526e66f126b31a11d69e6a2b57 | |
parent | 9bca5e68c8a766d38ba94b44f67cc06c33ef0f9e (diff) | |
download | libmicrohttpd-9fe0cd9b2922acf5e73e037530e9c54ce0b9d0fc.tar.gz libmicrohttpd-9fe0cd9b2922acf5e73e037530e9c54ce0b9d0fc.zip |
W32 VS: updated MHD_config.h
-rw-r--r-- | w32/common/MHD_config.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/w32/common/MHD_config.h b/w32/common/MHD_config.h index c6acf32e..6c97799c 100644 --- a/w32/common/MHD_config.h +++ b/w32/common/MHD_config.h | |||
@@ -74,6 +74,12 @@ | |||
74 | /* Enable digest Auth support */ | 74 | /* Enable digest Auth support */ |
75 | #define DAUTH_SUPPORT 1 | 75 | #define DAUTH_SUPPORT 1 |
76 | 76 | ||
77 | /* The default HTTP Digest Auth default maximum nc (nonce count) value */ | ||
78 | #define MHD_DAUTH_DEF_MAX_NC_ 1000 | ||
79 | |||
80 | /* The default HTTP Digest Auth default nonce timeout value (in seconds) */ | ||
81 | #define MHD_DAUTH_DEF_TIMEOUT_ 90 | ||
82 | |||
77 | /* Enable MD5 hashing support. */ | 83 | /* Enable MD5 hashing support. */ |
78 | #define MHD_MD5_SUPPORT 1 | 84 | #define MHD_MD5_SUPPORT 1 |
79 | 85 | ||
@@ -100,6 +106,12 @@ | |||
100 | /* Provides IPv6 headers */ | 106 | /* Provides IPv6 headers */ |
101 | #define HAVE_INET6 1 | 107 | #define HAVE_INET6 1 |
102 | 108 | ||
109 | /* Define to 1 if your system allow overriding the value of FD_SETSIZE macro */ | ||
110 | #define HAS_FD_SETSIZE_OVERRIDABLE 1 | ||
111 | |||
112 | /* Define to system default value of FD_SETSIZE macro */ | ||
113 | #define MHD_SYS_FD_SETSIZE_ 64 | ||
114 | |||
103 | /* Define to use socketpair for inter-thread communication */ | 115 | /* Define to use socketpair for inter-thread communication */ |
104 | #define _MHD_ITC_SOCKETPAIR 1 | 116 | #define _MHD_ITC_SOCKETPAIR 1 |
105 | 117 | ||
@@ -134,9 +146,6 @@ | |||
134 | /* Define if you have usable assert() and assert.h */ | 146 | /* Define if you have usable assert() and assert.h */ |
135 | #define HAVE_ASSERT 1 | 147 | #define HAVE_ASSERT 1 |
136 | 148 | ||
137 | /* Define to 1 if you have the <inttypes.h> header file. */ | ||
138 | #define HAVE_INTTYPES_H 1 | ||
139 | |||
140 | /* Define to 1 if you have the <limits.h> header file. */ | 149 | /* Define to 1 if you have the <limits.h> header file. */ |
141 | #define HAVE_LIMITS_H 1 | 150 | #define HAVE_LIMITS_H 1 |
142 | 151 | ||
@@ -171,6 +180,8 @@ | |||
171 | #define HAVE_STDBOOL_H 1 | 180 | #define HAVE_STDBOOL_H 1 |
172 | /* Define to 1 if you have the real boolean type. */ | 181 | /* Define to 1 if you have the real boolean type. */ |
173 | #define HAVE_REAL_BOOL 1 | 182 | #define HAVE_REAL_BOOL 1 |
183 | /* Define to 1 if you have the real boolean type. */ | ||
184 | #define HAVE_BUILTIN_TYPE_BOOL 1 | ||
174 | #else /* before VS 2013 */ | 185 | #else /* before VS 2013 */ |
175 | 186 | ||
176 | /* Define to type name which will be used as boolean type. */ | 187 | /* Define to type name which will be used as boolean type. */ |