aboutsummaryrefslogtreecommitdiff
path: root/lib/urldata.h
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2013-04-05 09:20:04 +0200
committerDaniel Stenberg <daniel@haxx.se>2013-04-05 09:20:04 +0200
commite7c56a8406d0d751b8afc1daf2dcbb67c763c465 (patch)
treebb1d472fe3fdec6cf3af19947efe4aece7cdccb2 /lib/urldata.h
parente5d25b6c68de86c4a7182e883f5b473f3b14bbd9 (diff)
Curl_open: restore default MAXCONNECTS to 5
At some point recently we lost the default value for the easy handle's connection cache, and this change puts it back to 5 - which is the former default value and it is documented in the curl_easy_setopt.3 man page.
Diffstat (limited to 'lib/urldata.h')
-rw-r--r--lib/urldata.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/urldata.h b/lib/urldata.h
index b63d8eed6..1113020ee 100644
--- a/lib/urldata.h
+++ b/lib/urldata.h
@@ -58,6 +58,8 @@
#define CURL_DEFAULT_USER "anonymous"
#define CURL_DEFAULT_PASSWORD "ftp@example.com"
+#define DEFAULT_CONNCACHE_SIZE 5
+
/* length of longest IPv6 address string including the trailing null */
#define MAX_IPADR_LEN sizeof("ffff:ffff:ffff:ffff:ffff:ffff:255.255.255.255")