summaryrefslogtreecommitdiff
path: root/indra/llmessage
diff options
context:
space:
mode:
authorDessie Linden <dessie@lindenlab.com>2010-06-07 11:27:42 -0700
committerDessie Linden <dessie@lindenlab.com>2010-06-07 11:27:42 -0700
commit085b2c24f9ded3d0e9a33500a287aaa53e8b7fba (patch)
tree0f2ad3881231003f14c3bd9a96d2f284114facbd /indra/llmessage
parent4db92e5155f604492cbc8f5053bcd24237e3c3b6 (diff)
parentea5d8a1634a0457e57251b7a7ce76631cfd3f745 (diff)
Merge from viewer-public
Diffstat (limited to 'indra/llmessage')
-rw-r--r--indra/llmessage/llcurl.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/indra/llmessage/llcurl.cpp b/indra/llmessage/llcurl.cpp
index 91e11b8c0d..36874a5d48 100644
--- a/indra/llmessage/llcurl.cpp
+++ b/indra/llmessage/llcurl.cpp
@@ -365,6 +365,13 @@ U32 LLCurl::Easy::report(CURLcode code)
responseReason = strerror(code) + " : " + mErrorBuffer;
}
+ if(responseCode >= 300 && responseCode < 400) //redirect
+ {
+ char new_url[512] ;
+ curl_easy_getinfo(mCurlEasyHandle, CURLINFO_REDIRECT_URL, new_url);
+ responseReason = new_url ; //get the new URL.
+ }
+
if (mResponder)
{
mResponder->completedRaw(responseCode, responseReason, mChannels, mOutput);