Report a failure
| 52 | |
| 53 | // Report a failure |
| 54 | void |
| 55 | fail(beast::error_code ec, char const* what) |
| 56 | { |
| 57 | std::cerr << (std::string(what) + ": " + ec.message() + "\n"); |
| 58 | } |
| 59 | |
| 60 | // Adjust settings on the stream |
| 61 | template<class NextLayer> |
no test coverage detected