| 65 | } |
| 66 | |
| 67 | void onError(int error, const std::string& category, const std::string& message) override |
| 68 | { |
| 69 | std::cout << "SSL client caught an error with code " << error << " and category '" << category << "': " << message << std::endl; |
| 70 | ++total_errors; |
| 71 | } |
| 72 | |
| 73 | private: |
| 74 | size_t _sent{0}; |
nothing calls this directly
no outgoing calls
no test coverage detected