PageRenderTime 27ms CodeModel.GetById 12ms RepoModel.GetById 1ms app.codeStats 0ms

/indra/llmessage/llhttpclientadapter.cpp

https://bitbucket.org/lindenlab/viewer-beta/
C++ | 55 lines | 21 code | 6 blank | 28 comment | 0 complexity | fcecd0cfd5d637271a97cc4e06a664ce MD5 | raw file
Possible License(s): LGPL-2.1
  1. /**
  2. * @file llhttpclientadapter.cpp
  3. * @brief
  4. *
  5. * $LicenseInfo:firstyear=2009&license=viewerlgpl$
  6. * Second Life Viewer Source Code
  7. * Copyright (C) 2010, Linden Research, Inc.
  8. *
  9. * This library is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU Lesser General Public
  11. * License as published by the Free Software Foundation;
  12. * version 2.1 of the License only.
  13. *
  14. * This library is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  17. * Lesser General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU Lesser General Public
  20. * License along with this library; if not, write to the Free Software
  21. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  22. *
  23. * Linden Research, Inc., 945 Battery Street, San Francisco, CA 94111 USA
  24. * $/LicenseInfo$
  25. */
  26. #include "llhttpclientadapter.h"
  27. #include "llhttpclient.h"
  28. LLHTTPClientAdapter::~LLHTTPClientAdapter()
  29. {
  30. }
  31. void LLHTTPClientAdapter::get(const std::string& url, LLCurl::ResponderPtr responder)
  32. {
  33. LLSD empty_pragma_header;
  34. // Pragma is required to stop curl adding "no-cache"
  35. // Space is required to stop llurlrequest from turnning off proxying
  36. empty_pragma_header["Pragma"] = " ";
  37. LLHTTPClient::get(url, responder, empty_pragma_header);
  38. }
  39. void LLHTTPClientAdapter::get(const std::string& url, LLCurl::ResponderPtr responder, const LLSD& headers)
  40. {
  41. LLSD empty_pragma_header = headers;
  42. // as above
  43. empty_pragma_header["Pragma"] = " ";
  44. LLHTTPClient::get(url, responder, empty_pragma_header);
  45. }
  46. void LLHTTPClientAdapter::put(const std::string& url, const LLSD& body, LLCurl::ResponderPtr responder)
  47. {
  48. LLHTTPClient::put(url, body, responder);
  49. }