| 64 | } |
| 65 | |
| 66 | void WebSocket::setUrl(const std::string& url) |
| 67 | { |
| 68 | std::lock_guard<std::mutex> lock(_configMutex); |
| 69 | _url = url; |
| 70 | } |
| 71 | |
| 72 | void WebSocket::setHandshakeTimeout(int handshakeTimeoutSecs) |
| 73 | { |
no outgoing calls
no test coverage detected