mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2025-05-14 16:58:30 +00:00
Added client methods with shared pointer to Response.
This commit is contained in:
parent
d187cdef50
commit
3c8c835489
4 changed files with 72 additions and 6 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue