| 354 | namespace SC |
| 355 | { |
| 356 | int HttpWebSocketHandshakeResult::httpStatusCode() const |
| 357 | { |
| 358 | switch (status) |
| 359 | { |
| 360 | case Status::Accepted: return 101; |
| 361 | case Status::BadRequest: return 400; |
| 362 | case Status::UnsupportedVersion: return 426; |
| 363 | } |
| 364 | return 400; |
| 365 | } |
| 366 | |
| 367 | bool HttpWebSocketFrameHeaderView::isControlFrame() const |
| 368 | { |
no outgoing calls
no test coverage detected