libmicrohttpd

HTTP/1.x server C library (MHD 1.x, stable)
Log | Files | Refs | Submodules | README | LICENSE

commit c3b626ed22f172767f6c59487c08c619592d157c
parent 41dfd74cd49c356078fa272e60161a45b8a3afef
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Tue, 26 Jul 2022 20:49:17 +0300

microhttpd: improved description for MHD_OPTION_NONCE_NC_SIZE

Diffstat:
Msrc/include/microhttpd.h | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/src/include/microhttpd.h b/src/include/microhttpd.h @@ -1764,6 +1764,11 @@ enum MHD_OPTION * Size of the internal array holding the map of the nonce and * the nonce counter. This option should be followed by an `unsigend int` * argument. + * The map size is 4 by default, which is enough to communicate with + * a single client at any given moment of time, but not enough to + * handle several clients simultaneously. + * If Digest Auth is not used, this option can be set to zero to minimise + * memory allocation. */ MHD_OPTION_NONCE_NC_SIZE = 18,