gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[libmicrohttpd] 06/07: Added ignore of MHD_OPTION_APP_FD_SETSIZE when po


From: gnunet
Subject: [libmicrohttpd] 06/07: Added ignore of MHD_OPTION_APP_FD_SETSIZE when poll() is used
Date: Wed, 08 Nov 2023 18:23:08 +0100

This is an automated email from the git hooks/post-receive script.

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 09b7e335d8adc36926543305f3ee8d1b4961b0ab
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Wed Nov 8 17:57:00 2023 +0300

    Added ignore of MHD_OPTION_APP_FD_SETSIZE when poll() is used
---
 src/microhttpd/daemon.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index 20916a2f..2489728f 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -7186,6 +7186,16 @@ process_interim_params (struct MHD_Daemon *d,
                 _ ("MHD_OPTION_APP_FD_SETSIZE is ignored for daemon started " \
                    "with MHD_USE_INTERNAL_POLLING_THREAD.\n"));
 #endif /* HAVE_MESSAGES */
+      (void) 0;
+    }
+    else if (MHD_D_IS_USING_POLL_ (d))
+    {
+#ifdef HAVE_MESSAGES
+      MHD_DLOG (d,
+                _ ("MHD_OPTION_APP_FD_SETSIZE is ignored for daemon started " \
+                   "with MHD_USE_POLL.\n"));
+#endif /* HAVE_MESSAGES */
+      (void) 0;
     }
     else
     { /* The daemon without internal threads, external sockets polling */

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]