Home
last modified time | relevance | path

Searched defs:HttpResponse (Results 1 – 1 of 1) sorted by relevance

/device/google/cuttlefish/host/libs/web/http_client/
Dhttp_client.h36 struct HttpResponse { struct
37 bool HttpInfo() { return http_code >= 100 && http_code <= 199; } in HttpInfo()
38 bool HttpSuccess() { return IsHttpSuccess(http_code); } in HttpSuccess()
39 bool HttpRedirect() { return http_code >= 300 && http_code <= 399; } in HttpRedirect()
63 virtual Result<HttpResponse<std::string>> GetToString( argument