summaryrefslogtreecommitdiff
path: root/lib/http.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-04 11:37:12 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-04 14:57:57 +0200
commit18815aa670eeace30e8d61dc581859cfe3df02b5 (patch)
tree3c8fd83c63a6c429d0e1fe50f14bded03a31f0fe /lib/http.h
parent7a86a25f5b73b86455cd977572250de0a6124524 (diff)
downloadcurl-18815aa670eeace30e8d61dc581859cfe3df02b5.tar.gz
ngtcp2: convert to dynbuf
Closes #5335
Diffstat (limited to 'lib/http.h')
-rw-r--r--lib/http.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/http.h b/lib/http.h
index cc262f7d3..9ea3eb283 100644
--- a/lib/http.h
+++ b/lib/http.h
@@ -182,9 +182,7 @@ struct HTTP {
#ifdef USE_NGHTTP3
size_t unacked_window;
struct h3out *h3out; /* per-stream buffers for upload */
- char *overflow_buf; /* excess data received during a single Curl_read */
- size_t overflow_buflen; /* amount of data currently in overflow_buf */
- size_t overflow_bufsize; /* size of the overflow_buf allocation */
+ struct dynbuf overflow; /* excess data received during a single Curl_read */
#endif
};