aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-08-09 19:59:20 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-08-09 21:24:55 +0300
commit228ddbd181aa6562331f3841649637d73e9d3855 (patch)
tree26217e56f7836a6993a542f8779243f957cd5851 /src/microhttpd/internal.h
parent20001736f8970e3fdf0e8dc6018bfe2cfdeec950 (diff)
downloadlibmicrohttpd-228ddbd181aa6562331f3841649637d73e9d3855.tar.gz
libmicrohttpd-228ddbd181aa6562331f3841649637d73e9d3855.zip
digestauth: limit nonce-count to uint32_t
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index e9ffb28a..e91369ad 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -268,7 +268,7 @@ struct MHD_NonceNc
268 * 'nc' value. 268 * 'nc' value.
269 * This 'nc' value was already used by the client. 269 * This 'nc' value was already used by the client.
270 */ 270 */
271 uint64_t nc; 271 uint32_t nc;
272 272
273 /** 273 /**
274 * Bitmask over the previous 64 nonce counter values (down to to nc-64). 274 * Bitmask over the previous 64 nonce counter values (down to to nc-64).