gnunet-svn
[Top][All Lists]
Advanced

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

[GNUnet-SVN] [gnurl] 46/63: http2: Stop drain from being permanently set


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 46/63: http2: Stop drain from being permanently set on
Date: Fri, 07 Jun 2019 18:37:08 +0200

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

ng0 pushed a commit to branch master
in repository gnurl.

commit 1c0e9527bad814f81dfbaf54eabdcb9e6fa95586
Author: Josie Huddleston <address@hidden>
AuthorDate: Wed May 29 15:21:26 2019 +0100

    http2: Stop drain from being permanently set on
    
    Various functions called within Curl_http2_done() can have the
    side-effect of setting the Easy connection into drain mode (by calling
    drain_this()).  However, the last time we unset this for a transfer (by
    calling drained_transfer()) is at the beginning of Curl_http2_done().
    If the Curl_easy is reused for another transfer, it is then stuck in
    drain mode permanently, which in practice makes it unable to write any
    data in the new transfer.
    
    This fix moves the last call to drained_transfer() to later in
    Curl_http2_done(), after the functions that could potentially call for a
    drain.
    
    Fixes #3966
    Closes #3967
    Reported-by: Josie-H
---
 lib/http2.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/lib/http2.c b/lib/http2.c
index 8e7bc217e..a535d14bb 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -1199,9 +1199,6 @@ void Curl_http2_done(struct connectdata *conn, bool 
premature)
   if(!httpc->h2) /* not HTTP/2 ? */
     return;
 
-  if(data->state.drain)
-    drained_transfer(data, httpc);
-
   if(premature) {
     /* RST_STREAM */
     if(!nghttp2_submit_rst_stream(httpc->h2, NGHTTP2_FLAG_NONE,
@@ -1213,6 +1210,10 @@ void Curl_http2_done(struct connectdata *conn, bool 
premature)
       httpc->pause_stream_id = 0;
     }
   }
+
+  if(data->state.drain)
+    drained_transfer(data, httpc);
+
   /* -1 means unassigned and 0 means cleared */
   if(http->stream_id > 0) {
     int rv = nghttp2_session_set_stream_user_data(httpc->h2,

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



reply via email to

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