[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [gnurl] 66/220: quiche:h3_stream_recv return 0 at end of st
From: |
gnunet |
Subject: |
[GNUnet-SVN] [gnurl] 66/220: quiche:h3_stream_recv return 0 at end of stream |
Date: |
Thu, 12 Sep 2019 17:27:06 +0200 |
This is an automated email from the git hooks/post-receive script.
ng0 pushed a commit to branch master
in repository gnurl.
commit cee7639b790f29113759f69c4a955c2ead8bff31
Author: Daniel Stenberg <address@hidden>
AuthorDate: Tue Aug 6 08:06:58 2019 +0200
quiche:h3_stream_recv return 0 at end of stream
... and remove some verbose messages we don't need. Made transfers from
facebook.com work better.
---
lib/vquic/quiche.c | 5 +----
1 file changed, 1 insertion(+), 4 deletions(-)
diff --git a/lib/vquic/quiche.c b/lib/vquic/quiche.c
index e1b9e30ce..68786540e 100644
--- a/lib/vquic/quiche.c
+++ b/lib/vquic/quiche.c
@@ -307,8 +307,6 @@ static ssize_t h3_stream_recv(struct connectdata *conn,
/* nothing more to do */
break;
- infof(conn->data, "quiche_h3_conn_poll got something: %zd\n", s);
-
switch(quiche_h3_event_type(ev)) {
case QUICHE_H3_EVENT_HEADERS:
infof(conn->data, "quiche says HEADERS\n");
@@ -346,9 +344,9 @@ static ssize_t h3_stream_recv(struct connectdata *conn,
if(quiche_conn_close(qs->conn, true, 0, NULL, 0) < 0) {
fprintf(stderr, "failed to close connection\n");
}
+ recvd = 0; /* end of stream */
break;
default:
- infof(conn->data, "quiche says UNKNOWN\n");
break;
}
@@ -356,7 +354,6 @@ static ssize_t h3_stream_recv(struct connectdata *conn,
}
*curlcode = (-1 == recvd)? CURLE_AGAIN : CURLE_OK;
- infof(conn->data, "h3_stream_recv returns %zd\n", recvd);
return recvd;
}
--
To stop receiving notification emails like this one, please contact
address@hidden.
- [GNUnet-SVN] [gnurl] 60/220: lib/Makefile.am: make checksrc run in vquic too, (continued)
- [GNUnet-SVN] [gnurl] 60/220: lib/Makefile.am: make checksrc run in vquic too, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 64/220: quiche: show the actual version number, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 49/220: md4: Move the GNU TLS Nettle MD4 implementation out of the NTLM code, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 57/220: md4: Use our own MD4 implementation when no crypto libraries are available, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 62/220: http09: disable HTTP/0.9 by default in both tool and library, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 68/220: mesalink: implement client authentication, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 80/220: curl.h: add CURL_HTTP_VERSION_3 to the version enum, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 79/220: quiche: make use of the connection timeout API properly, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 52/220: md4: Move the SecureTransport implementation out of the NTLM code, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 65/220: altsvc: make quiche use h3-22 now, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 66/220: quiche:h3_stream_recv return 0 at end of stream,
gnunet <=
- [GNUnet-SVN] [gnurl] 61/220: quiche: initial h3 request send/receive, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 63/220: quiche: first working HTTP/3 request, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 76/220: quiche: flush egress in h3_stream_recv() too, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 82/220: docs/ALTSVC.md: first basic file format description, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 75/220: RELEASE-NOTES: synced, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 83/220: CURLINFO_RETRY_AFTER: parse the Retry-After header value, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 32/220: plan9: add support for running on Plan 9, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 74/220: os400: take care of CURLOPT_SASL_AUTHZID in curl_easy_setopt_ccsid()., gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 87/220: docs/ALTSVC: remove what works and the experimental explanation, gnunet, 2019/09/12
- [GNUnet-SVN] [gnurl] 102/220: configure: avoid undefined check_for_ca_bundle, gnunet, 2019/09/12