diff options
Diffstat (limited to 'linden/indra/llmessage/llhttpclient.cpp')
-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); |