aboutsummaryrefslogtreecommitdiff
path: root/src/microhttpd/internal.h
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-12-28 11:29:38 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2023-12-28 11:29:38 +0300
commit6f9ff50bed6f38ed849d4699f4fcdde4d540e419 (patch)
tree98a5ccace4790286e4c25921f5dda220d0da65ed /src/microhttpd/internal.h
parent448901b4d551dd344a1d66095eb4d1ad28920787 (diff)
downloadlibmicrohttpd-6f9ff50bed6f38ed849d4699f4fcdde4d540e419.tar.gz
libmicrohttpd-6f9ff50bed6f38ed849d4699f4fcdde4d540e419.zip
internal.h: reordered members in struct MHD_Daemon
Diffstat (limited to 'src/microhttpd/internal.h')
-rw-r--r--src/microhttpd/internal.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
index 667b6071..b26e4a0d 100644
--- a/src/microhttpd/internal.h
+++ b/src/microhttpd/internal.h
@@ -2399,6 +2399,11 @@ struct MHD_Daemon
2399 const char *digest_auth_random; 2399 const char *digest_auth_random;
2400 2400
2401 /** 2401 /**
2402 * Size of @a digest_auth_random.
2403 */
2404 size_t digest_auth_rand_size;
2405
2406 /**
2402 * The malloc'ed copy of the @a digest_auth_random. 2407 * The malloc'ed copy of the @a digest_auth_random.
2403 */ 2408 */
2404 void *digest_auth_random_copy; 2409 void *digest_auth_random_copy;
@@ -2416,11 +2421,6 @@ struct MHD_Daemon
2416#endif 2421#endif
2417 2422
2418 /** 2423 /**
2419 * Size of `digest_auth_random.
2420 */
2421 size_t digest_auth_rand_size;
2422
2423 /**
2424 * Size of the nonce-nc array. 2424 * Size of the nonce-nc array.
2425 */ 2425 */
2426 unsigned int nonce_nc_size; 2426 unsigned int nonce_nc_size;