MCPcopy Create free account
hub / github.com/AshampooSystems/boden / HTTPRequest

Method HTTPRequest

framework/net/src/HTTPRequest.cpp:5–7  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3namespace bdn::net
4{
5 HTTPRequest::HTTPRequest(std::string requestUrl, DoneHandler requestDoneHandler)
6 : url(std::move(std::move(requestUrl))), doneHandler(std::move(std::move(requestDoneHandler)))
7 {}
8
9 HTTPRequest::HTTPRequest(http::Method requestMethod, std::string requestUrl, DoneHandler requestDoneHandler)
10 : method(requestMethod), url(std::move(std::move(requestUrl))),

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected