diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-01-30 18:21:57 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-01-30 20:24:15 +0100 |
commit | 48c3bed43bbd9cee6e4f25d44aa3b251d34ccb72 (patch) | |
tree | ad8fd6330ab3d8b4f675553fc177dbecd8d80276 /lib/http.h | |
parent | 1c9aaa0bac5129afec2dc1deb515054586244755 (diff) | |
download | curl-48c3bed43bbd9cee6e4f25d44aa3b251d34ccb72.tar.gz |
http2: add CRLF when first data arrives
Diffstat (limited to 'lib/http.h')
-rw-r--r-- | lib/http.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.h b/lib/http.h index 460e928be..a32a71d78 100644 --- a/lib/http.h +++ b/lib/http.h @@ -157,7 +157,7 @@ struct http_conn { size_t binlen; /* length of the binsettings data */ char *mem; /* points to a buffer in memory to store or read from */ size_t len; /* size of the buffer 'mem' points to */ - ssize_t nread; /* how much data that was sent/recv by the HTTP2 engine */ + bool bodystarted; #else int unused; /* prevent a compiler warning */ #endif |