diff options
author | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
commit | 89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch) | |
tree | bcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/llmessage/llhttpclient.h | |
parent | Second Life viewer sources 1.13.3.2 (diff) | |
download | meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2 meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz |
Second Life viewer sources 1.14.0.0
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmessage/llhttpclient.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linden/indra/llmessage/llhttpclient.h b/linden/indra/llmessage/llhttpclient.h index d48d084..93859eb 100644 --- a/linden/indra/llmessage/llhttpclient.h +++ b/linden/indra/llmessage/llhttpclient.h | |||
@@ -73,10 +73,14 @@ public: | |||
73 | static void put(const std::string& url, const LLSD& body, ResponderPtr); | 73 | static void put(const std::string& url, const LLSD& body, ResponderPtr); |
74 | ///< non-blocking | 74 | ///< non-blocking |
75 | static void post(const std::string& url, const LLSD& body, ResponderPtr); | 75 | static void post(const std::string& url, const LLSD& body, ResponderPtr); |
76 | static void post(const std::string& url, const U8* data, S32 size, ResponderPtr responder); | ||
76 | static void postFile(const std::string& url, const std::string& filename, ResponderPtr); | 77 | static void postFile(const std::string& url, const std::string& filename, ResponderPtr); |
77 | static void postFile(const std::string& url, const LLUUID& uuid, | 78 | static void postFile(const std::string& url, const LLUUID& uuid, |
78 | LLAssetType::EType asset_type, ResponderPtr responder); | 79 | LLAssetType::EType asset_type, ResponderPtr responder); |
79 | 80 | ||
81 | // Blocking HTTP get that returns an LLSD map of status and body. | ||
82 | static LLSD blockingGet(const std::string& url); | ||
83 | |||
80 | static void del(const std::string& url, ResponderPtr); | 84 | static void del(const std::string& url, ResponderPtr); |
81 | ///< sends a DELETE method, but we can't call it delete in c++ | 85 | ///< sends a DELETE method, but we can't call it delete in c++ |
82 | 86 | ||