summaryrefslogtreecommitdiff
path: root/lib/http2.c
diff options
context:
space:
mode:
authorJay Satiro <raysatiro@yahoo.com>2016-08-25 02:43:19 -0400
committerJay Satiro <raysatiro@yahoo.com>2016-08-25 02:43:19 -0400
commit2c36cb1cbbd679c915856fbac551eee953025b5e (patch)
treea54c2e64a4f0e85d776b5a6efe686f6b8f04fce5 /lib/http2.c
parent7ad50a61f28f773ad2d2f03031423da81bfb69fe (diff)
downloadgnurl-2c36cb1cbbd679c915856fbac551eee953025b5e.tar.gz
gnurl-2c36cb1cbbd679c915856fbac551eee953025b5e.tar.bz2
gnurl-2c36cb1cbbd679c915856fbac551eee953025b5e.zip
http2: Remove incorrect comments
.. also remove same from scp
Diffstat (limited to 'lib/http2.c')
-rw-r--r--lib/http2.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/lib/http2.c b/lib/http2.c
index 885208800..a14f75e62 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -1268,10 +1268,6 @@ static int h2_session_send(struct Curl_easy *data,
return nghttp2_session_send(h2);
}
-/*
- * If the read would block (EWOULDBLOCK) we return -1. Otherwise we return
- * a regular CURLcode value.
- */
static ssize_t http2_recv(struct connectdata *conn, int sockindex,
char *mem, size_t len, CURLcode *err)
{
@@ -1497,7 +1493,6 @@ static ssize_t http2_recv(struct connectdata *conn, int sockindex,
#define HEADER_OVERFLOW(x) \
(x.namelen > (uint16_t)-1 || x.valuelen > (uint16_t)-1 - x.namelen)
-/* return number of received (decrypted) bytes */
static ssize_t http2_send(struct connectdata *conn, int sockindex,
const void *mem, size_t len, CURLcode *err)
{