| 78 | } |
| 79 | |
| 80 | void onError(int error, const std::string& category, const std::string& message) override |
| 81 | { |
| 82 | std::cout << "WebSocket secure client caught an error with code " << error << " and category '" << category << "': " << message << std::endl; |
| 83 | ++total_errors; |
| 84 | } |
| 85 | |
| 86 | private: |
| 87 | size_t _sent{0}; |
nothing calls this directly
no outgoing calls
no test coverage detected