summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
author加藤郁之 <fumilemon79@gmail.com>2020-01-14 23:34:56 +0900
committerDaniel Stenberg <daniel@haxx.se>2020-01-20 08:33:44 +0100
commit7ff9222ced8c1630bef87d7d744c286874e659ba (patch)
tree88f9d5bc624471654fb91e37833d3bbd227a7b83 /lib
parentc275aa9903a77fad5afd61b78ccecd33baed4aca (diff)
downloadcurl-7ff9222ced8c1630bef87d7d744c286874e659ba.tar.gz
HTTP: increase EXPECT_100_THRESHOLD to 1Mb
Mentioned: https://curl.haxx.se/mail/lib-2020-01/0050.html Closes #4814
Diffstat (limited to 'lib')
-rw-r--r--lib/http.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http.h b/lib/http.h
index 70d5dccec..e6a9a27e4 100644
--- a/lib/http.h
+++ b/lib/http.h
@@ -116,7 +116,7 @@ CURLcode Curl_http_auth_act(struct connectdata *conn);
*
*/
#ifndef EXPECT_100_THRESHOLD
-#define EXPECT_100_THRESHOLD 1024
+#define EXPECT_100_THRESHOLD (1024*1024)
#endif
#endif /* CURL_DISABLE_HTTP */