diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-09-05 00:05:46 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-06 08:24:54 +0200 |
commit | 7c5837e79280e6abb3ae143dfc49bca5e74cdd11 (patch) | |
tree | 60c71abb621e45128f4cbacf56ffaba51b7017cf /lib/setopt.c | |
parent | 25fd1057c9c86e32d43fce147e80f47f6b385c84 (diff) | |
download | curl-7c5837e79280e6abb3ae143dfc49bca5e74cdd11.tar.gz |
CURLOPT_DNS_USE_GLOBAL_CACHE: deprecated
Disable the CURLOPT_DNS_USE_GLOBAL_CACHE option and mark it for
deprecation and complete removal in six months.
Bug: https://curl.haxx.se/mail/lib-2018-09/0010.html
Closes #2942
Diffstat (limited to 'lib/setopt.c')
-rw-r--r-- | lib/setopt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/setopt.c b/lib/setopt.c index f2fadc786..66636a2da 100644 --- a/lib/setopt.c +++ b/lib/setopt.c @@ -127,9 +127,11 @@ CURLcode Curl_vsetopt(struct Curl_easy *data, CURLoption option, data->set.dns_cache_timeout = arg; break; case CURLOPT_DNS_USE_GLOBAL_CACHE: +#if 0 /* deprecated */ /* remember we want this enabled */ arg = va_arg(param, long); data->set.global_dns_cache = (0 != arg) ? TRUE : FALSE; +#endif break; case CURLOPT_SSL_CIPHER_LIST: /* set a list of cipher we want to use in the SSL connection */ |