summaryrefslogtreecommitdiff
path: root/indra/llmessage/llhttpclient.cpp
diff options
context:
space:
mode:
authorDon Kjer <don@lindenlab.com>2007-05-01 21:52:29 +0000
committerDon Kjer <don@lindenlab.com>2007-05-01 21:52:29 +0000
commiteb3731a3ca0d202809ed20a0f49a7a77ecd4c669 (patch)
treed8ad688e5b5092418125ecc1b27669860b148b5b /indra/llmessage/llhttpclient.cpp
parent4ecb9cb63e4993b3b4bc65d73ed255139b5c3f75 (diff)
svn merge -r 61099:61168 svn+ssh://svn/svn/linden/branches/release-candidate into release
Diffstat (limited to 'indra/llmessage/llhttpclient.cpp')
-rw-r--r--indra/llmessage/llhttpclient.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/indra/llmessage/llhttpclient.cpp b/indra/llmessage/llhttpclient.cpp
index 92c309f1bc..a7d187f534 100644
--- a/indra/llmessage/llhttpclient.cpp
+++ b/indra/llmessage/llhttpclient.cpp
@@ -17,6 +17,7 @@
#include "llsdserialize.h"
#include "llvfile.h"
#include "llvfs.h"
+#include "lluri.h"
#include "message.h"
#include <curl/curl.h>
@@ -263,6 +264,14 @@ void LLHTTPClient::get(const std::string& url, ResponderPtr responder, const F32
request(url, LLURLRequest::HTTP_GET, NULL, responder, timeout);
}
+void LLHTTPClient::get(const std::string& url, const LLSD& query, ResponderPtr responder, const F32 timeout)
+{
+ LLURI uri;
+
+ uri = LLURI::buildHTTP(url, LLSD::emptyArray(), query);
+ get(uri.asString(), responder, timeout);
+}
+
// A simple class for managing data returned from a curl http request.
class LLHTTPBuffer
{