Report a failure
| 32 | |
| 33 | // Report a failure |
| 34 | void |
| 35 | fail(beast::error_code ec, char const* what) |
| 36 | { |
| 37 | std::cerr << what << ": " << ec.message() << "\n"; |
| 38 | } |
| 39 | |
| 40 | // Performs an HTTP GET and prints the response |
| 41 | class session : public std::enable_shared_from_this<session> |
no test coverage detected