| 240 | } |
| 241 | |
| 242 | bool websocket::send_frame_pong(const char* str) |
| 243 | { |
| 244 | return send_frame_pong(str, str ? strlen(str) : 0); |
| 245 | } |
| 246 | |
| 247 | bool websocket::send_frame_pong(const void* data, size_t len) |
| 248 | { |
no outgoing calls
no test coverage detected