From e0af243b6165adc590c78c0b024805fb060b4f56 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 4 May 2020 16:52:24 +0200 Subject: [PATCH] urldata.h: remove #define HEADERSIZE, not used anymore Follow-up to ed35d6590e72c --- lib/urldata.h | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lib/urldata.h b/lib/urldata.h index c8966f624..757218d83 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -153,10 +153,6 @@ typedef ssize_t (Curl_recv)(struct connectdata *conn, /* connection data */ #include #endif /* HAVE_LIBSSH2_H */ -/* Initial size of the buffer to store headers in, it'll be enlarged in case - of need. */ -#define HEADERSIZE 256 - #define CURLEASY_MAGIC_NUMBER 0xc0dedbadU #define GOOD_EASY_HANDLE(x) \ ((x) && ((x)->magic == CURLEASY_MAGIC_NUMBER))