Home | History | Annotate | Download | only in http

Lines Matching refs:http

18 #include <brillo/http/http_connection.h>
19 #include <brillo/http/http_transport.h>
22 namespace http {
24 // HTTP request verbs
31 BRILLO_EXPORT extern const char kPatch[]; // Non-standard HTTP/1.1 verb
35 BRILLO_EXPORT extern const char kCopy[]; // Non-standard HTTP/1.1 verb
36 BRILLO_EXPORT extern const char kMove[]; // Non-standard HTTP/1.1 verb
39 // HTTP request header names
82 // HTTP response header names
115 // HTTP request status (error) codes
149 // HTTP/1.1: keep same verb
197 // HTTP version not supported
205 // Request class is the main object used to set up and initiate an HTTP
206 // communication session. It is used to specify the HTTP request method,
207 // request URL and many optional parameters (such as HTTP headers, user agent,
212 // used to inspect the response code, HTTP headers and/or response body.
217 // to send the request to. |method| is the HTTP request verb and
218 // |transport| is the HTTP transport implementation for server communications.
232 // Adds additional HTTP request header
236 // Removes HTTP request header
256 // All individual ranges will be sent as part of "Range:" HTTP request header.
261 // All individual ranges will be sent as part of "Range:" HTTP request header.
294 // Helper function to create an http::Connection and send off request headers.
297 // Implementation that provides particular HTTP transport.
305 // Full request URL, such as "http://www.host.com/path/to/object"
307 // HTTP request verb, such as "GET", "POST", "PUT", ...
337 // to get to response status, error codes, response HTTP headers and response
348 // Returns the HTTP status code (e.g. 200 for success)
367 // Returns a value of a given response HTTP header.
378 } // namespace http