summaryrefslogtreecommitdiff
path: root/lib/dynbuf.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2020-05-02 17:04:08 +0200
committerDaniel Stenberg <daniel@haxx.se>2020-05-04 10:41:06 +0200
commitdae126ff12655fdad0dc0b7b808ace5963d1bd40 (patch)
tree05ea3a244bf4fc5e35b8f88d4824555c190a647d /lib/dynbuf.h
parented35d6590e72c23c568af1e3b8ac6e4e2d883888 (diff)
downloadcurl-dae126ff12655fdad0dc0b7b808ace5963d1bd40.tar.gz
http_proxy: ported to use dynbuf instead of a static size buffer
Removes a 16K static buffer from the easy handle. Simplifies the code.
Diffstat (limited to 'lib/dynbuf.h')
-rw-r--r--lib/dynbuf.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/dynbuf.h b/lib/dynbuf.h
index 96e2fce8a..427269c68 100644
--- a/lib/dynbuf.h
+++ b/lib/dynbuf.h
@@ -57,5 +57,6 @@ size_t Curl_dyn_len(const struct dynbuf *s);
#define DYN_APRINTF 8000000
#define DYN_RTSP_REQ_HEADER (64*1024)
#define DYN_TRAILERS (64*1024)
+#define DYN_PROXY_CONNECT_HEADERS 16384
#endif