| 623 | void HttpWebSocketClientHandshake::onClientError(Result result) { fail(result); } |
| 624 | |
| 625 | void HttpWebSocketClientHandshake::fail(Result result) |
| 626 | { |
| 627 | if (onError.isValid()) |
| 628 | { |
| 629 | onError(result); |
| 630 | } |
| 631 | } |
| 632 | |
| 633 | void HttpWebSocketFrameReader::reset(HttpWebSocketEndpointRole role) |
| 634 | { |