Added client methods with shared pointer to Response.

This commit is contained in:
yhirose 2012-10-04 01:18:18 -04:00
parent d187cdef50
commit 3c8c835489
4 changed files with 72 additions and 6 deletions

View file

@ -17,11 +17,11 @@ int main(void)
Client cli("localhost", 8080);
Response res;
if (cli.get(hi, res)) {
cout << res.status << endl;
cout << res.get_header_value("Content-Type") << endl;
cout << res.body << endl;
auto res = cli.get(hi);
if (res) {
cout << res->status << endl;
cout << res->get_header_value("Content-Type") << endl;
cout << res->body << endl;
}
return 0;