libmicrohttpd

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

commit 6702e6202368720d7a381669c03eedc318f225ca
parent 2e8a4f8b9a521f94e8b00c15dba458493892a685
Author: Christian Grothoff <christian@grothoff.org>
Date:   Thu, 26 Mar 2020 19:08:30 +0100

fix #6135

Diffstat:
Msrc/microhttpd/internal.h | 12++++++------
1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/src/microhttpd/internal.h b/src/microhttpd/internal.h @@ -1463,12 +1463,6 @@ struct MHD_Daemon size_t thread_stack_size; /** - * Our #MHD_OPTION_SERVER_INSANITY level, bits indicating - * which sanity checks are off. - */ - enum MHD_DisableSanityCheck insanity_level; - - /** * Number of worker daemons */ unsigned int worker_pool_size; @@ -1491,6 +1485,12 @@ struct MHD_Daemon #endif /** + * Our #MHD_OPTION_SERVER_INSANITY level, bits indicating + * which sanity checks are off. + */ + enum MHD_DisableSanityCheck insanity_level; + + /** * Listen socket. */ MHD_socket listen_fd;