diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-07-07 23:08:03 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-07-07 23:08:03 +0000 |
commit | ee8112b42f0114eda71fe07d9a6f5f202910acc4 (patch) | |
tree | 27db8eb6608b4936e81634295e80c62fe1317b4d /docs/libcurl | |
parent | ca319f63ad757a69f14105ab4a8bbf10987b8ad0 (diff) |
mention the shared DNS stuff
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/curl_multi_add_handle.3 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/libcurl/curl_multi_add_handle.3 b/docs/libcurl/curl_multi_add_handle.3 index 11e530b98..3ce9f78ea 100644 --- a/docs/libcurl/curl_multi_add_handle.3 +++ b/docs/libcurl/curl_multi_add_handle.3 @@ -15,6 +15,11 @@ this \fImulti_handle\fP control the specified \fIeasy_handle\fP. When an easy handle has been added to a multi stack, you can not and you must not use \fIcurl_easy_perform(3)\fP on that handle! +If the easy handle is not set to use a shared (CURLOPT_SHARE) or global DNS +cache (CURLOPT_DNS_USE_GLOBAL_CACHE), it will be made to use the DNS cache +that is shared between all easy handles within the multi handle when +\fIcurl_multi_add_handle(3)\fP is called. + The easy handle will remain added until you remove it again with \fIcurl_multi_remove_handle(3)\fP. You should remove the easy handle from the multi stack before you terminate first the easy handle and then the multi |