From 18815aa670eeace30e8d61dc581859cfe3df02b5 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 4 May 2020 11:37:12 +0200 Subject: ngtcp2: convert to dynbuf Closes #5335 --- lib/http.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'lib/http.h') 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 }; -- cgit v1.2.1