diff options
author | Jacek Antonelli | 2008-08-15 23:45:22 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:45:22 -0500 |
commit | 1e8e051fafa147fc3375bf7693c781e3be17b6d4 (patch) | |
tree | 071633b1e27b13f52619ea60a58338bfab34538a /linden/indra/llmessage/llhttpclient.cpp | |
parent | Second Life viewer sources 1.18.6.0-RC (diff) | |
download | meta-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.cpp | 5 |
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 | ||
328 | void LLHTTPClient::head(const std::string& url, ResponderPtr responder, const F32 timeout) | ||
329 | { | ||
330 | request(url, LLURLRequest::HTTP_HEAD, NULL, responder, timeout); | ||
331 | } | ||
332 | |||
328 | void LLHTTPClient::get(const std::string& url, ResponderPtr responder, const LLSD& headers, const F32 timeout) | 333 | void 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); |