libmicrohttpd

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

commit dc4bbb0c82373a8b8dca70210392ba804ee62d3d
parent b6737ab39b9df59acad1fe6fb7dc673ddf8e03db
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
Date:   Wed, 15 Nov 2023 15:22:43 +0300

Additional corrections for MHD_OPTION_APP_FD_SETSIZE

Diffstat:
Msrc/microhttpd/daemon.c | 2--
1 file changed, 0 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c @@ -7382,7 +7382,6 @@ process_interim_params (struct MHD_Daemon *d, } else { /* The daemon without internal threads, external sockets polling */ -#ifdef MHD_POSIX_SOCKETS #ifndef HAS_FD_SETSIZE_OVERRIDABLE if (((int) FD_SETSIZE) != params->fdset_size) { @@ -7399,7 +7398,6 @@ process_interim_params (struct MHD_Daemon *d, d->fdset_size = params->fdset_size; d->fdset_size_set_by_app = true; #endif /* HAS_FD_SETSIZE_OVERRIDABLE */ -#endif /* MHD_POSIX_SOCKETS */ } }