aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llmessage/llhttpclient.cpp
diff options
context:
space:
mode:
authorJacek Antonelli2008-08-15 23:45:22 -0500
committerJacek Antonelli2008-08-15 23:45:22 -0500
commit1e8e051fafa147fc3375bf7693c781e3be17b6d4 (patch)
tree071633b1e27b13f52619ea60a58338bfab34538a /linden/indra/llmessage/llhttpclient.cpp
parentSecond Life viewer sources 1.18.6.0-RC (diff)
downloadmeta-impy-1e8e051fafa147fc3375bf7693c781e3be17b6d4.zip
meta-impy-1e8e051fafa147fc3375bf7693c781e3be17b6d4.tar.gz
meta-impy-1e8e051fafa147fc3375bf7693c781e3be17b6d4.tar.bz2
meta-impy-1e8e051fafa147fc3375bf7693c781e3be17b6d4.tar.xz
Second Life viewer sources 1.18.6.1-RC
Diffstat (limited to '')
-rw-r--r--linden/indra/llmessage/llhttpclient.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/linden/indra/llmessage/llhttpclient.cpp b/linden/indra/llmessage/llhttpclient.cpp
index 7144f13..bf5fa40 100644
--- a/linden/indra/llmessage/llhttpclient.cpp
+++ b/linden/indra/llmessage/llhttpclient.cpp
@@ -325,6 +325,11 @@ static void request(
325 request(url, method, body_injector, responder, LLSD(), timeout); 325 request(url, method, body_injector, responder, LLSD(), timeout);
326} 326}
327 327
328void LLHTTPClient::head(const std::string& url, ResponderPtr responder, const F32 timeout)
329{
330 request(url, LLURLRequest::HTTP_HEAD, NULL, responder, timeout);
331}
332
328void LLHTTPClient::get(const std::string& url, ResponderPtr responder, const LLSD& headers, const F32 timeout) 333void LLHTTPClient::get(const std::string& url, ResponderPtr responder, const LLSD& headers, const F32 timeout)
329{ 334{
330 request(url, LLURLRequest::HTTP_GET, NULL, responder, headers, timeout); 335 request(url, LLURLRequest::HTTP_GET, NULL, responder, headers, timeout);