gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [libmicrohttpd] branch master updated: run_tls_handshake():


From: gnunet
Subject: [GNUnet-SVN] [libmicrohttpd] branch master updated: run_tls_handshake(): fixed wrong return value resulting in slower TLS connection setup
Date: Thu, 16 Mar 2017 19:07:55 +0100

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

karlson2k pushed a commit to branch master
in repository libmicrohttpd.

The following commit(s) were added to refs/heads/master by this push:
     new 58998332 run_tls_handshake(): fixed wrong return value resulting in 
slower TLS connection setup
58998332 is described below

commit 589983325b496245bb31612ff5aa6b1bb808b5fd
Author: Evgeny Grin (Karlson2k) <address@hidden>
AuthorDate: Thu Mar 16 21:06:27 2017 +0300

    run_tls_handshake(): fixed wrong return value resulting in slower TLS 
connection setup
---
 src/microhttpd/connection_https.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/microhttpd/connection_https.c 
b/src/microhttpd/connection_https.c
index d71a31c8..c4eb835d 100644
--- a/src/microhttpd/connection_https.c
+++ b/src/microhttpd/connection_https.c
@@ -56,7 +56,7 @@ run_tls_handshake (struct MHD_Connection *connection)
        {
          /* set connection state to enable HTTP processing */
          connection->state = MHD_CONNECTION_INIT;
-         return MHD_YES;
+         return MHD_NO;
        }
       if ( (GNUTLS_E_AGAIN == ret) ||
           (GNUTLS_E_INTERRUPTED == ret) )

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

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