Home | History | Annotate | Download | only in http

Lines Matching refs:http

14 #include <brillo/http/curl_api.h>
15 #include <brillo/http/http_transport.h>
18 namespace http {
24 // An implementation of http::Transport that uses libcurl for
25 // HTTP communications. This class (as http::Transport base)
26 // is used by http::Request and http::Response classes to provide HTTP
30 class BRILLO_EXPORT Transport : public http::Transport {
37 // If not defined, protocol is assumed to be http://.
42 // Overrides from http::Transport.
43 std::shared_ptr<http::Connection> CreateConnection(
54 RequestID StartAsyncTransfer(http::Connection* connection,
91 void OnTransferComplete(http::curl::Connection* connection,
96 void CleanAsyncConnection(http::curl::Connection* connection);
140 } // namespace http