diff options
author | Dave Parks <davep@lindenlab.com> | 2010-02-17 15:51:39 -0600 |
---|---|---|
committer | Dave Parks <davep@lindenlab.com> | 2010-02-17 15:51:39 -0600 |
commit | 161aff8e86ae690e6ba4124c9433bfed5025b133 (patch) | |
tree | 01a26a48305972fd84b95ce9ab9c8daed917eafa /indra/llmessage/llcurl.h | |
parent | d4d84c899780acdf2ade3f2951e1272d51227170 (diff) | |
parent | 74621ff8a8a141d50a3c92430afbe53a9e00edb5 (diff) |
merge
Diffstat (limited to 'indra/llmessage/llcurl.h')
-rw-r--r-- | indra/llmessage/llcurl.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/indra/llmessage/llcurl.h b/indra/llmessage/llcurl.h index caf02cccd9..6ec0a5d8a7 100644 --- a/indra/llmessage/llcurl.h +++ b/indra/llmessage/llcurl.h @@ -213,6 +213,8 @@ public: void get(const std::string& url, LLCurl::ResponderPtr responder); bool getByteRange(const std::string& url, const headers_t& headers, S32 offset, S32 length, LLCurl::ResponderPtr responder); bool post(const std::string& url, const headers_t& headers, const LLSD& data, LLCurl::ResponderPtr responder); + bool post(const std::string& url, const headers_t& headers, const std::string& data, LLCurl::ResponderPtr responder); + S32 process(); S32 getQueued(); @@ -226,6 +228,7 @@ private: curlmulti_set_t mMultiSet; LLCurl::Multi* mActiveMulti; S32 mActiveRequestCount; + BOOL mProcessing; U32 mThreadID; // debug }; |