diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-09-06 09:16:02 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-06 09:17:25 +0200 |
commit | 5ffbb63e4271b7df05f0bfc31d0696745f028e76 (patch) | |
tree | 54ed0ceb752b1713efdce049f39c5df23be9fda5 /src/tool_operate.c | |
parent | abff183387ae7e4a0bb7cbdd653ff64aeb1840a7 (diff) | |
download | curl-5ffbb63e4271b7df05f0bfc31d0696745f028e76.tar.gz |
curl: --doh-url added
Diffstat (limited to 'src/tool_operate.c')
-rw-r--r-- | src/tool_operate.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/tool_operate.c b/src/tool_operate.c index 2c3f6dd4c..5a72b6a8c 100644 --- a/src/tool_operate.c +++ b/src/tool_operate.c @@ -1262,6 +1262,9 @@ static CURLcode operate_do(struct GlobalConfig *global, my_setopt(curl, CURLOPT_CONNECTTIMEOUT_MS, (long)(config->connecttimeout * 1000)); + if(config->doh_url) + my_setopt_str(curl, CURLOPT_DOH_URL, config->doh_url); + if(config->cipher_list) my_setopt_str(curl, CURLOPT_SSL_CIPHER_LIST, config->cipher_list); |