gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 04/09: test_upgrade: added initial support for timeout d


From: gnunet
Subject: [libmicrohttpd] 04/09: test_upgrade: added initial support for timeout detection
Date: Fri, 24 Nov 2023 19:53:59 +0100

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit 80ecc6d37cfe0ba56566b63cd3f798cb2dc931a4
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Mon Oct 23 20:50:55 2023 +0300

    test_upgrade: added initial support for timeout detection
---
 src/microhttpd/test_upgrade.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/microhttpd/test_upgrade.c b/src/microhttpd/test_upgrade.c
index c9ba09b0..d62ef7fd 100644
--- a/src/microhttpd/test_upgrade.c
+++ b/src/microhttpd/test_upgrade.c
@@ -161,6 +161,9 @@ _testErrorLog_func (const char *errDesc, const char 
*funcName, int lineNum)
 #endif /* ! MHD_HAVE_MHD_FUNC_ */
 
 
+/* Could be increased to facilitate debugging */
+static unsigned int test_timeout = 5U;
+
 static int verbose = 0;
 
 static uint16_t global_port;
@@ -1333,6 +1336,7 @@ test_upgrade (unsigned int flags,
                           MHD_OPTION_NOTIFY_CONNECTION, &notify_connection_cb,
                           NULL,
                           MHD_OPTION_THREAD_POOL_SIZE, pool,
+                          MHD_OPTION_CONNECTION_TIMEOUT, test_timeout,
                           MHD_OPTION_END);
 #ifdef HTTPS_SUPPORT
   else
@@ -1349,6 +1353,7 @@ test_upgrade (unsigned int flags,
                           MHD_OPTION_HTTPS_MEM_KEY, srv_signed_key_pem,
                           MHD_OPTION_HTTPS_MEM_CERT, srv_signed_cert_pem,
                           MHD_OPTION_THREAD_POOL_SIZE, pool,
+                          MHD_OPTION_CONNECTION_TIMEOUT, test_timeout,
                           MHD_OPTION_END);
 #endif /* HTTPS_SUPPORT */
   if (NULL == d)

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