aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:44:49 -0500
committerJacek Antonelli2008-08-15 23:44:49 -0500
commitc659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd (patch)
tree49f225d319b111f30f113c4cf7728565afa52132 /linden/indra/llmessage
parentSecond Life viewer sources 1.13.2.15 (diff)
downloadmeta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.zip
meta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.tar.gz
meta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.tar.bz2
meta-impy-c659c65d02d4d92b614ccdf2e2a4a0dcf859a8cd.tar.xz
Second Life viewer sources 1.13.3.2
Diffstat (limited to 'linden/indra/llmessage')
-rw-r--r--linden/indra/llmessage/llhttpclient.cpp9
-rw-r--r--linden/indra/llmessage/llhttpclient.h4
2 files changed, 11 insertions, 2 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
256void 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
255void LLHTTPClient::postFile(const std::string& url, const std::string& filename, ResponderPtr responder) 262void LLHTTPClient::postFile(const std::string& url, const std::string& filename, ResponderPtr responder)
256{ 263{
diff --git a/linden/indra/llmessage/llhttpclient.h b/linden/indra/llmessage/llhttpclient.h
index c6b68b2..d48d084 100644
--- a/linden/indra/llmessage/llhttpclient.h
+++ b/linden/indra/llmessage/llhttpclient.h
@@ -35,8 +35,10 @@
35#include <string> 35#include <string>
36 36
37#include <boost/intrusive_ptr.hpp> 37#include <boost/intrusive_ptr.hpp>
38#include "llassetstorage.h"
39 38
39#include "llassettype.h"
40
41class LLUUID;
40class LLPumpIO; 42class LLPumpIO;
41class LLSD; 43class LLSD;
42 44