Lines Matching refs:Http
21 std::string Http::MethodToString(Method method) in MethodToString()
25 return name[(method - Http::Method::Get)]; in MethodToString()
28 std::string Http::SchemeToString(Scheme scheme) in SchemeToString()
31 return name[scheme - Http::Scheme::HTTP]; in SchemeToString()
34 const char* Http::ACCEPT = "Accept";
35 const char* Http::ACCEPT_CHARSET = "Accept-Charset";
36 const char* Http::ACCEPT_ENCODING = "Accept-Encoding";
37 const char* Http::ACCEPT_LANGUAGE = "Accept-Language";
38 const char* Http::AUTHORIZATION = "Authorization";
39 const char* Http::CACHE_CONTROL = "Cache-Control";
40 const char* Http::CONTENT_DISPOSITION = "Content-Disposition";
41 const char* Http::CONTENT_ENCODING = "Content-Encoding";
42 const char* Http::CONTENT_LENGTH = "Content-Length";
43 const char* Http::CONTENT_MD5 = "Content-MD5";
44 const char* Http::CONTENT_RANGE = "Content-Range";
45 const char* Http::CONTENT_TYPE = "Content-Type";
46 const char* Http::DATE = "Date";
47 const char* Http::EXPECT = "Expect";
48 const char* Http::EXPIRES = "Expires";
49 const char* Http::ETAG = "ETag";
50 const char* Http::LAST_MODIFIED = "Last-Modified";
51 const char* Http::RANGE = "Range";
52 const char* Http::USER_AGENT = "User-Agent";
55 HttpRequest::HttpRequest(Http::Method method) : in HttpRequest()
70 Http::Method HttpRequest::method() const in method()
76 void HttpRequest::setMethod(Http::Method method) in setMethod()