diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/llmessage/llhttpclient.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/linden/indra/llmessage/llhttpclient.cpp b/linden/indra/llmessage/llhttpclient.cpp index 5f75e59..d94918e 100644 --- a/linden/indra/llmessage/llhttpclient.cpp +++ b/linden/indra/llmessage/llhttpclient.cpp | |||
@@ -26,8 +26,10 @@ | |||
26 | */ | 26 | */ |
27 | 27 | ||
28 | #include "linden_common.h" | 28 | #include "linden_common.h" |
29 | #include "llassetstorage.h" | 29 | |
30 | #include "llhttpclient.h" | 30 | #include "llhttpclient.h" |
31 | |||
32 | #include "llassetstorage.h" | ||
31 | #include "lliopipe.h" | 33 | #include "lliopipe.h" |
32 | #include "llurlrequest.h" | 34 | #include "llurlrequest.h" |
33 | #include "llbufferstream.h" | 35 | #include "llbufferstream.h" |
@@ -251,6 +253,11 @@ void LLHTTPClient::post(const std::string& url, const LLSD& body, ResponderPtr r | |||
251 | request(url, LLURLRequest::HTTP_POST, new LLSDInjector(body), responder); | 253 | request(url, LLURLRequest::HTTP_POST, new LLSDInjector(body), responder); |
252 | } | 254 | } |
253 | 255 | ||
256 | void LLHTTPClient::del(const std::string& url, ResponderPtr responder) | ||
257 | { | ||
258 | request(url, LLURLRequest::HTTP_DELETE, NULL, responder); | ||
259 | } | ||
260 | |||
254 | #if 1 | 261 | #if 1 |
255 | void LLHTTPClient::postFile(const std::string& url, const std::string& filename, ResponderPtr responder) | 262 | void LLHTTPClient::postFile(const std::string& url, const std::string& filename, ResponderPtr responder) |
256 | { | 263 | { |