From 934e15973ea86e0e863123d4c5eabeae44d6c763 Mon Sep 17 00:00:00 2001 From: Steven Bennetts Date: Wed, 31 Jan 2007 19:36:32 +0000 Subject: merge release@57486 release-candidate@57503 --- indra/llmessage/llhttpclient.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'indra/llmessage/llhttpclient.cpp') diff --git a/indra/llmessage/llhttpclient.cpp b/indra/llmessage/llhttpclient.cpp index 38dee26723..7d51b6c722 100644 --- a/indra/llmessage/llhttpclient.cpp +++ b/indra/llmessage/llhttpclient.cpp @@ -7,8 +7,10 @@ */ #include "linden_common.h" -#include "llassetstorage.h" + #include "llhttpclient.h" + +#include "llassetstorage.h" #include "lliopipe.h" #include "llurlrequest.h" #include "llbufferstream.h" @@ -232,6 +234,11 @@ void LLHTTPClient::post(const std::string& url, const LLSD& body, ResponderPtr r request(url, LLURLRequest::HTTP_POST, new LLSDInjector(body), responder); } +void LLHTTPClient::del(const std::string& url, ResponderPtr responder) +{ + request(url, LLURLRequest::HTTP_DELETE, NULL, responder); +} + #if 1 void LLHTTPClient::postFile(const std::string& url, const std::string& filename, ResponderPtr responder) { -- cgit v1.2.3