gnunet-svn
[Top][All Lists]
Advanced

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

[libmicrohttpd] 08/15: Do not send "100 Continue" if part of the request


From: gnunet
Subject: [libmicrohttpd] 08/15: Do not send "100 Continue" if part of the request body is already received
Date: Fri, 28 Oct 2022 11:21:57 +0200

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

commit bf9e99729c52c2462390ce1d29eeda7f0f337b26
Author: Evgeny Grin (Karlson2k) <k2k@narod.ru>
AuthorDate: Fri Oct 21 12:13:31 2022 +0300

    Do not send "100 Continue" if part of the request body is already received
---
 src/microhttpd/connection.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/microhttpd/connection.c b/src/microhttpd/connection.c
index 885557b5..0f94422b 100644
--- a/src/microhttpd/connection.c
+++ b/src/microhttpd/connection.c
@@ -4935,8 +4935,12 @@ MHD_connection_handle_idle (struct MHD_Connection 
*connection)
         continue;
       if (connection->suspended)
         continue;
+
       if ( (NULL == connection->rp.response) &&
-           (need_100_continue (connection)) )
+           (need_100_continue (connection)) &&
+           /* If the client is already sending the payload (body)
+              there is no need to send "100 Continue" */
+           (0 == connection->read_buffer_offset) )
       {
         connection->state = MHD_CONNECTION_CONTINUE_SENDING;
         break;

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