diff options
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r-- | src/microhttpd/internal.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h index 17f44c64..61e08a38 100644 --- a/src/microhttpd/internal.h +++ b/src/microhttpd/internal.h @@ -197,6 +197,12 @@ struct MHD_NonceNc uint64_t nc; /** + * Bitmask over the nc-64 previous nonce values. Used to + * allow out-of-order nonces. + */ + uint64_t nmask; + + /** * Nonce value: */ char nonce[MAX_NONCE_LENGTH]; @@ -1499,7 +1505,7 @@ struct MHD_Daemon struct MHD_NonceNc *nnc; /** - * A rw-lock for synchronizing access to `nnc'. + * A rw-lock for synchronizing access to @e nnc. */ MHD_mutex_ nnc_lock; |