diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-05-04 16:52:24 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-05-04 16:53:05 +0200 |
commit | e0af243b6165adc590c78c0b024805fb060b4f56 (patch) | |
tree | fbaae0154cbbbcbdf7dd88afe6b4ad734b4703c2 | |
parent | 18815aa670eeace30e8d61dc581859cfe3df02b5 (diff) |
urldata.h: remove #define HEADERSIZE, not used anymore
Follow-up to ed35d6590e72c
-rw-r--r-- | lib/urldata.h | 4 |
1 files changed, 0 insertions, 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 <libssh2_sftp.h> #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)) |