diff options
author | Leslie Linden <leslie@lindenlab.com> | 2011-09-15 16:23:44 -0700 |
---|---|---|
committer | Leslie Linden <leslie@lindenlab.com> | 2011-09-15 16:23:44 -0700 |
commit | 9e00dc0cc0af26d85d5613e8bddc03067e37c7d2 (patch) | |
tree | 42de09ea97f45a80c1969c986fe313eb2a7dc192 /indra/llmessage/llcurl.cpp | |
parent | 03e965a7324ca9ecc3d99faf27e2ea4d7b2fbc52 (diff) | |
parent | 1d3f6ef432b714a7659e9a5ee62377e56a843006 (diff) |
Merge from viewer-experience-merge
Diffstat (limited to 'indra/llmessage/llcurl.cpp')
-rw-r--r-- | indra/llmessage/llcurl.cpp | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp index a3de178d78..14e169c6b1 100644 --- a/indra/llmessage/llcurl.cpp +++ b/indra/llmessage/llcurl.cpp @@ -499,7 +499,7 @@ void LLCurl::Easy::prepRequest(const std::string& url, //don't verify host name so urls with scrubbed host names will work (improves DNS performance) setopt(CURLOPT_SSL_VERIFYHOST, 0); - setopt(CURLOPT_TIMEOUT, CURL_REQUEST_TIMEOUT); + setopt(CURLOPT_TIMEOUT, llmax(time_out, CURL_REQUEST_TIMEOUT)); setoptString(CURLOPT_URL, url); @@ -1213,3 +1213,13 @@ void LLCurl::cleanupClass() } const unsigned int LLCurl::MAX_REDIRECTS = 5; + +// Provide access to LLCurl free functions outside of llcurl.cpp without polluting the global namespace. +void LLCurlFF::check_easy_code(CURLcode code) +{ + check_curl_code(code); +} +void LLCurlFF::check_multi_code(CURLMcode code) +{ + check_curl_multi_code(code); +} |