commit 6f9ff50bed6f38ed849d4699f4fcdde4d540e419
parent 448901b4d551dd344a1d66095eb4d1ad28920787
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date: Thu, 28 Dec 2023 11:29:38 +0300
internal.h: reordered members in struct MHD_Daemon
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h
@@ -2399,6 +2399,11 @@ struct MHD_Daemon
const char *digest_auth_random;
/**
+ * Size of @a digest_auth_random.
+ */
+ size_t digest_auth_rand_size;
+
+ /**
* The malloc'ed copy of the @a digest_auth_random.
*/
void *digest_auth_random_copy;
@@ -2416,11 +2421,6 @@ struct MHD_Daemon
#endif
/**
- * Size of `digest_auth_random.
- */
- size_t digest_auth_rand_size;
-
- /**
* Size of the nonce-nc array.
*/
unsigned int nonce_nc_size;