diff options
author | Aimee Linden <aimee@lindenlab.com> | 2010-06-28 16:30:08 +0100 |
---|---|---|
committer | Aimee Linden <aimee@lindenlab.com> | 2010-06-28 16:30:08 +0100 |
commit | 81f5c0241436f3b3fb097dd38c108d110540de7a (patch) | |
tree | 4e91fcc3b71be8e1b142f17f190909ee7bca6157 /indra/llmessage/llurlrequest.cpp | |
parent | 3240b188e958fa6232ddb03bc29adb968c7521ac (diff) |
EXT-7498 WIP Snapshot Sharing
Reviewed by Tofu.
Diffstat (limited to 'indra/llmessage/llurlrequest.cpp')
-rw-r--r-- | indra/llmessage/llurlrequest.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/indra/llmessage/llurlrequest.cpp b/indra/llmessage/llurlrequest.cpp index 1e76d10828..295f69e902 100644 --- a/indra/llmessage/llurlrequest.cpp +++ b/indra/llmessage/llurlrequest.cpp @@ -251,6 +251,11 @@ void LLURLRequest::useProxy(const std::string &proxy) mDetail->mCurlRequest->setoptString(CURLOPT_PROXY, proxy); } +void LLURLRequest::allowCookies() +{ + mDetail->mCurlRequest->setoptString(CURLOPT_COOKIEFILE, ""); +} + // virtual LLIOPipe::EStatus LLURLRequest::handleError( LLIOPipe::EStatus status, |