aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-12-28 12:44:46 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-12-28 12:51:07 +0300
commitff63d75797ddcaf223197e12b12def2b0803588c (patch)
tree60b1db2e1604fa93f0bc96511db6fdd06583e05b /src/microhttpd/internal.h
parent6f9ff50bed6f38ed849d4699f4fcdde4d540e419 (diff)
downloadlibmicrohttpd-ff63d75797ddcaf223197e12b12def2b0803588c.tar.gz
libmicrohttpd-ff63d75797ddcaf223197e12b12def2b0803588c.zip
digest auth: added default timeout and max nc values
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index b26e4a0d..6a2a22df 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -2429,6 +2429,16 @@ struct MHD_Daemon
2429 * Nonce bind type. 2429 * Nonce bind type.
2430 */ 2430 */
2431 unsigned int dauth_bind_type; 2431 unsigned int dauth_bind_type;
2432
2433 /**
2434 * Default nonce validity length.
2435 */
2436 unsigned int dauth_def_nonce_timeout;
2437
2438 /**
2439 * Default maximum nc (nonce count) value.
2440 */
2441 uint32_t dauth_def_max_nc;
2432#endif 2442#endif
2433 2443
2434#ifdef TCP_FASTOPEN 2444#ifdef TCP_FASTOPEN