| 97 | }; // struct HttpRequest |
| 98 | |
| 99 | Status HttpGet(const std::string& host, const int32_t& port, const std::string& url_path, |
| 100 | ostream* out, int expected_code = 200, const std::string& method = "GET") { |
| 101 | return HttpRequest{url_path, host, port}.Do(out, expected_code, method); |
| 102 | |
| 103 | } |
| 104 | } // namespace impala |