http_transport.cc 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Copyright 2014 The Crashpad Authors. All rights reserved.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include "util/net/http_transport.h"
  15. #include <utility>
  16. #include "util/net/http_body.h"
  17. namespace crashpad {
  18. HTTPTransport::HTTPTransport()
  19. : url_(),
  20. method_("POST"),
  21. headers_(),
  22. body_stream_(),
  23. timeout_(15.0) {
  24. }
  25. HTTPTransport::~HTTPTransport() {
  26. }
  27. void HTTPTransport::SetURL(const std::string& url) {
  28. url_ = url;
  29. }
  30. void HTTPTransport::SetMethod(const std::string& method) {
  31. method_ = method;
  32. }
  33. void HTTPTransport::SetHeader(const std::string& header,
  34. const std::string& value) {
  35. headers_[header] = value;
  36. }
  37. void HTTPTransport::SetBodyStream(std::unique_ptr<HTTPBodyStream> stream) {
  38. body_stream_ = std::move(stream);
  39. }
  40. void HTTPTransport::SetTimeout(double timeout) {
  41. timeout_ = timeout;
  42. }
  43. } // namespace crashpad