gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 01/13: Added detection of more conditions to process the


From: gnunet
Subject: [libmicrohttpd] 01/13: Added detection of more conditions to process the data without waiting
Date: Thu, 23 Nov 2023 11:49:04 +0100

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit e35469ec9bec0b30e8dda99ad458175fe8ecdbf6
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Fri Oct 27 11:14:18 2023 +0300

    Added detection of more conditions to process the data without waiting
    
    If no new or current connections are pending to be processed, it is
    a good moment to perform some internal maintenance, like cleanup
---
 src/microhttpd/daemon.c | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/src/microhttpd/daemon.c b/src/microhttpd/daemon.c
index e88600c2..d9ad907b 100644
--- a/src/microhttpd/daemon.c
+++ b/src/microhttpd/daemon.c
@@ -4205,9 +4205,12 @@ MHD_get_timeout64 (struct MHD_Daemon *daemon,
 #endif
     return MHD_NO;
   }
-  if (daemon->data_already_pending)
+  if (daemon->data_already_pending
+      || (NULL != daemon->cleanup_head)
+      || daemon->resuming
+      || daemon->have_new)
   {
-    /* Some data already waiting to be processed. */
+    /* Some data or connection statuses already waiting to be processed. */
     *timeout64 = 0;
     return MHD_YES;
   }

-- 
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]