1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 09:49:29 +00:00
actix-web/src/ws/mod.rs

540 lines
16 KiB
Rust
Raw Normal View History

2017-10-08 05:41:02 +00:00
//! `WebSocket` support for Actix
//!
2018-04-13 23:02:01 +00:00
//! To setup a `WebSocket`, first do web socket handshake then on success
//! convert `Payload` into a `WsStream` stream and then use `WsWriter` to
//! communicate with the peer.
2017-10-08 05:41:02 +00:00
//!
//! ## Example
//!
//! ```rust
//! # extern crate actix;
//! # extern crate actix_web;
//! # use actix::*;
//! # use actix_web::*;
2018-03-31 16:18:25 +00:00
//! use actix_web::{ws, HttpRequest, HttpResponse};
2017-10-08 05:41:02 +00:00
//!
2017-11-29 22:12:27 +00:00
//! // do websocket handshake and start actor
2018-01-01 01:26:32 +00:00
//! fn ws_index(req: HttpRequest) -> Result<HttpResponse> {
//! ws::start(req, Ws)
2017-11-29 18:31:24 +00:00
//! }
//!
//! struct Ws;
2017-10-08 05:41:02 +00:00
//!
//! impl Actor for Ws {
//! type Context = ws::WebsocketContext<Self>;
2017-10-08 05:41:02 +00:00
//! }
//!
2018-02-27 18:09:24 +00:00
//! // Handler for ws::Message messages
2018-03-27 06:29:53 +00:00
//! impl StreamHandler<ws::Message, ws::ProtocolError> for Ws {
2018-01-05 21:30:21 +00:00
//!
//! fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
2017-10-08 05:41:02 +00:00
//! match msg {
//! ws::Message::Ping(msg) => ctx.pong(&msg),
2018-02-10 06:26:48 +00:00
//! ws::Message::Text(text) => ctx.text(text),
//! ws::Message::Binary(bin) => ctx.binary(bin),
2017-10-08 05:41:02 +00:00
//! _ => (),
//! }
//! }
//! }
//! #
//! # fn main() {
2018-03-31 07:16:55 +00:00
//! # App::new()
//! # .resource("/ws/", |r| r.f(ws_index)) // <- register websocket route
//! # .finish();
//! # }
2017-10-08 05:41:02 +00:00
//! ```
2018-02-26 21:58:23 +00:00
use bytes::Bytes;
2017-10-08 05:41:02 +00:00
use futures::{Async, Poll, Stream};
2018-04-13 23:02:01 +00:00
use http::{header, Method, StatusCode};
2017-10-08 04:48:00 +00:00
2018-02-27 18:09:24 +00:00
use actix::{Actor, AsyncContext, StreamHandler};
2017-10-08 04:48:00 +00:00
use body::Binary;
2018-02-27 18:09:24 +00:00
use error::{Error, PayloadError, ResponseError};
use httpmessage::HttpMessage;
use httprequest::HttpRequest;
2018-01-01 01:26:32 +00:00
use httpresponse::{ConnectionType, HttpResponse, HttpResponseBuilder};
2018-04-13 23:02:01 +00:00
use payload::PayloadHelper;
2017-10-08 04:48:00 +00:00
2018-04-13 23:02:01 +00:00
mod client;
2018-01-10 19:13:29 +00:00
mod context;
2018-04-13 23:02:01 +00:00
mod frame;
mod mask;
2018-04-13 23:02:01 +00:00
mod proto;
2018-01-10 19:13:29 +00:00
2018-04-13 23:02:01 +00:00
pub use self::client::{Client, ClientError, ClientHandshake, ClientReader, ClientWriter};
pub use self::context::WebsocketContext;
2018-03-09 21:03:15 +00:00
pub use self::frame::Frame;
pub use self::proto::{CloseCode, CloseReason, OpCode};
/// Websocket protocol errors
2018-02-27 18:09:24 +00:00
#[derive(Fail, Debug)]
pub enum ProtocolError {
2018-02-27 18:09:24 +00:00
/// Received an unmasked frame from client
2018-04-13 23:02:01 +00:00
#[fail(display = "Received an unmasked frame from client")]
2018-02-27 18:09:24 +00:00
UnmaskedFrame,
/// Received a masked frame from server
2018-04-13 23:02:01 +00:00
#[fail(display = "Received a masked frame from server")]
2018-02-27 18:09:24 +00:00
MaskedFrame,
/// Encountered invalid opcode
2018-04-13 23:02:01 +00:00
#[fail(display = "Invalid opcode: {}", _0)]
2018-02-27 18:09:24 +00:00
InvalidOpcode(u8),
/// Invalid control frame length
2018-04-13 23:02:01 +00:00
#[fail(display = "Invalid control frame length: {}", _0)]
2018-02-27 18:09:24 +00:00
InvalidLength(usize),
/// Bad web socket op code
2018-04-13 23:02:01 +00:00
#[fail(display = "Bad web socket op code")]
2018-02-27 18:09:24 +00:00
BadOpCode,
/// A payload reached size limit.
2018-04-13 23:02:01 +00:00
#[fail(display = "A payload reached size limit.")]
2018-02-27 18:09:24 +00:00
Overflow,
2018-03-24 06:35:52 +00:00
/// Continuation is not supported
2018-04-13 23:02:01 +00:00
#[fail(display = "Continuation is not supported.")]
2018-02-27 18:09:24 +00:00
NoContinuation,
/// Bad utf-8 encoding
2018-04-13 23:02:01 +00:00
#[fail(display = "Bad utf-8 encoding.")]
2018-02-27 18:09:24 +00:00
BadEncoding,
/// Payload error
2018-04-13 23:02:01 +00:00
#[fail(display = "Payload error: {}", _0)]
2018-02-27 18:09:24 +00:00
Payload(#[cause] PayloadError),
}
impl ResponseError for ProtocolError {}
2018-02-27 18:09:24 +00:00
impl From<PayloadError> for ProtocolError {
fn from(err: PayloadError) -> ProtocolError {
ProtocolError::Payload(err)
2018-02-27 18:09:24 +00:00
}
}
/// Websocket handshake errors
#[derive(Fail, PartialEq, Debug)]
pub enum HandshakeError {
2018-02-27 18:09:24 +00:00
/// Only get method is allowed
2018-04-13 23:02:01 +00:00
#[fail(display = "Method not allowed")]
2018-02-27 18:09:24 +00:00
GetMethodRequired,
/// Upgrade header if not set to websocket
2018-04-13 23:02:01 +00:00
#[fail(display = "Websocket upgrade is expected")]
2018-02-27 18:09:24 +00:00
NoWebsocketUpgrade,
/// Connection header is not set to upgrade
2018-04-13 23:02:01 +00:00
#[fail(display = "Connection upgrade is expected")]
2018-02-27 18:09:24 +00:00
NoConnectionUpgrade,
/// Websocket version header is not set
2018-04-13 23:02:01 +00:00
#[fail(display = "Websocket version header is required")]
2018-02-27 18:09:24 +00:00
NoVersionHeader,
/// Unsupported websocket version
2018-04-13 23:02:01 +00:00
#[fail(display = "Unsupported version")]
2018-02-27 18:09:24 +00:00
UnsupportedVersion,
/// Websocket key is not set or wrong
2018-04-13 23:02:01 +00:00
#[fail(display = "Unknown websocket key")]
2018-02-27 18:09:24 +00:00
BadWebsocketKey,
}
impl ResponseError for HandshakeError {
2018-02-27 18:09:24 +00:00
fn error_response(&self) -> HttpResponse {
match *self {
2018-04-29 16:09:08 +00:00
HandshakeError::GetMethodRequired => HttpResponse::MethodNotAllowed()
.header(header::ALLOW, "GET")
.finish(),
HandshakeError::NoWebsocketUpgrade => HttpResponse::BadRequest()
2018-04-13 23:02:01 +00:00
.reason("No WebSocket UPGRADE header found")
.finish(),
2018-04-29 16:09:08 +00:00
HandshakeError::NoConnectionUpgrade => HttpResponse::BadRequest()
.reason("No CONNECTION upgrade")
.finish(),
HandshakeError::NoVersionHeader => HttpResponse::BadRequest()
2018-04-13 23:02:01 +00:00
.reason("Websocket version header is required")
.finish(),
2018-04-29 16:09:08 +00:00
HandshakeError::UnsupportedVersion => HttpResponse::BadRequest()
.reason("Unsupported version")
.finish(),
HandshakeError::BadWebsocketKey => HttpResponse::BadRequest()
.reason("Handshake error")
.finish(),
2018-02-27 18:09:24 +00:00
}
}
}
2017-10-08 06:59:57 +00:00
/// `WebSocket` Message
2018-02-12 20:17:30 +00:00
#[derive(Debug, PartialEq, Message)]
2017-10-08 04:48:00 +00:00
pub enum Message {
Text(String),
Binary(Binary),
2017-10-08 04:48:00 +00:00
Ping(String),
Pong(String),
Close(Option<CloseReason>),
2017-10-08 04:48:00 +00:00
}
2017-11-29 22:12:27 +00:00
/// Do websocket handshake and start actor
2018-02-25 08:21:45 +00:00
pub fn start<A, S>(req: HttpRequest<S>, actor: A) -> Result<HttpResponse, Error>
2018-04-13 23:02:01 +00:00
where
A: Actor<Context = WebsocketContext<A, S>> + StreamHandler<Message, ProtocolError>,
S: 'static,
2017-11-29 18:31:24 +00:00
{
2018-01-01 01:26:32 +00:00
let mut resp = handshake(&req)?;
let stream = WsStream::new(req.clone());
2018-01-01 01:26:32 +00:00
let mut ctx = WebsocketContext::new(req, actor);
2018-02-27 18:09:24 +00:00
ctx.add_stream(stream);
2018-01-01 01:26:32 +00:00
Ok(resp.body(ctx))
2017-11-29 18:31:24 +00:00
}
2017-10-08 05:41:02 +00:00
/// Prepare `WebSocket` handshake response.
2017-10-08 04:48:00 +00:00
///
2017-10-08 06:59:57 +00:00
/// This function returns handshake `HttpResponse`, ready to send to peer.
2017-10-08 05:41:02 +00:00
/// It does not perform any IO.
2017-10-08 04:48:00 +00:00
///
2017-10-08 05:41:02 +00:00
// /// `protocols` is a sequence of known protocols. On successful handshake,
// /// the returned response headers contain the first protocol in this list
// /// which the server also knows.
2018-04-13 23:02:01 +00:00
pub fn handshake<S>(
2018-04-29 05:55:47 +00:00
req: &HttpRequest<S>,
2018-04-13 23:02:01 +00:00
) -> Result<HttpResponseBuilder, HandshakeError> {
2017-10-08 04:48:00 +00:00
// WebSocket accepts only GET
if *req.method() != Method::GET {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::GetMethodRequired);
2017-10-08 04:48:00 +00:00
}
// Check for "UPGRADE" to websocket header
2017-10-10 06:07:32 +00:00
let has_hdr = if let Some(hdr) = req.headers().get(header::UPGRADE) {
if let Ok(s) = hdr.to_str() {
s.to_lowercase().contains("websocket")
} else {
false
}
2017-10-08 04:48:00 +00:00
} else {
false
};
if !has_hdr {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::NoWebsocketUpgrade);
2017-10-08 04:48:00 +00:00
}
// Upgrade connection
2017-10-14 07:11:12 +00:00
if !req.upgrade() {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::NoConnectionUpgrade);
2017-10-08 04:48:00 +00:00
}
// check supported version
2018-04-29 16:09:08 +00:00
if !req.headers()
.contains_key(header::SEC_WEBSOCKET_VERSION)
{
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::NoVersionHeader);
2017-10-08 04:48:00 +00:00
}
let supported_ver = {
2018-02-28 22:16:55 +00:00
if let Some(hdr) = req.headers().get(header::SEC_WEBSOCKET_VERSION) {
2017-10-10 06:07:32 +00:00
hdr == "13" || hdr == "8" || hdr == "7"
} else {
false
2017-10-08 04:48:00 +00:00
}
};
if !supported_ver {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::UnsupportedVersion);
2017-10-08 04:48:00 +00:00
}
// check client handshake for validity
2018-02-28 22:16:55 +00:00
if !req.headers().contains_key(header::SEC_WEBSOCKET_KEY) {
2018-04-13 23:02:01 +00:00
return Err(HandshakeError::BadWebsocketKey);
2017-10-10 06:07:32 +00:00
}
let key = {
2018-02-28 22:16:55 +00:00
let key = req.headers().get(header::SEC_WEBSOCKET_KEY).unwrap();
2018-03-09 21:03:15 +00:00
proto::hash_key(key.as_ref())
2017-10-08 04:48:00 +00:00
};
2017-11-27 06:31:29 +00:00
Ok(HttpResponse::build(StatusCode::SWITCHING_PROTOCOLS)
2018-04-13 23:02:01 +00:00
.connection_type(ConnectionType::Upgrade)
.header(header::UPGRADE, "websocket")
.header(header::TRANSFER_ENCODING, "chunked")
.header(header::SEC_WEBSOCKET_ACCEPT, key.as_str())
.take())
2017-10-08 04:48:00 +00:00
}
2017-10-08 05:41:02 +00:00
/// Maps `Payload` stream into stream of `ws::Message` items
2018-02-26 21:58:23 +00:00
pub struct WsStream<S> {
rx: PayloadHelper<S>,
2017-10-13 23:33:23 +00:00
closed: bool,
2018-02-27 18:09:24 +00:00
max_size: usize,
2017-10-08 04:48:00 +00:00
}
2018-04-13 23:02:01 +00:00
impl<S> WsStream<S>
where
S: Stream<Item = Bytes, Error = PayloadError>,
{
2018-02-27 18:09:24 +00:00
/// Create new websocket frames stream
2018-02-26 21:58:23 +00:00
pub fn new(stream: S) -> WsStream<S> {
2018-04-13 23:02:01 +00:00
WsStream {
rx: PayloadHelper::new(stream),
closed: false,
max_size: 65_536,
2018-02-27 18:09:24 +00:00
}
}
/// Set max frame size
///
/// By default max size is set to 64kb
pub fn max_size(mut self, size: usize) -> Self {
self.max_size = size;
self
2017-10-08 04:48:00 +00:00
}
}
2018-04-13 23:02:01 +00:00
impl<S> Stream for WsStream<S>
where
S: Stream<Item = Bytes, Error = PayloadError>,
{
2017-10-08 04:48:00 +00:00
type Item = Message;
type Error = ProtocolError;
2017-10-08 04:48:00 +00:00
fn poll(&mut self) -> Poll<Option<Self::Item>, Self::Error> {
2018-02-26 21:58:23 +00:00
if self.closed {
2018-04-13 23:02:01 +00:00
return Ok(Async::Ready(None));
2017-10-09 03:16:48 +00:00
}
2017-10-08 04:48:00 +00:00
2018-02-27 18:09:24 +00:00
match Frame::parse(&mut self.rx, true, self.max_size) {
2018-02-26 21:58:23 +00:00
Ok(Async::Ready(Some(frame))) => {
2018-02-27 18:09:24 +00:00
let (finished, opcode, payload) = frame.unpack();
// continuation is not supported
if !finished {
self.closed = true;
2018-04-13 23:02:01 +00:00
return Err(ProtocolError::NoContinuation);
2018-02-27 18:09:24 +00:00
}
2017-10-08 04:48:00 +00:00
2018-02-26 21:58:23 +00:00
match opcode {
2018-03-09 01:19:50 +00:00
OpCode::Continue => Err(ProtocolError::NoContinuation),
2018-02-27 18:09:24 +00:00
OpCode::Bad => {
self.closed = true;
Err(ProtocolError::BadOpCode)
2018-02-27 18:09:24 +00:00
}
2018-02-26 21:58:23 +00:00
OpCode::Close => {
self.closed = true;
let close_reason = Frame::parse_close_payload(&payload);
Ok(Async::Ready(Some(Message::Close(close_reason))))
2018-04-13 23:02:01 +00:00
}
OpCode::Ping => Ok(Async::Ready(Some(Message::Ping(
String::from_utf8_lossy(payload.as_ref()).into(),
)))),
OpCode::Pong => Ok(Async::Ready(Some(Message::Pong(
String::from_utf8_lossy(payload.as_ref()).into(),
)))),
OpCode::Binary => Ok(Async::Ready(Some(Message::Binary(payload)))),
2018-02-26 21:58:23 +00:00
OpCode::Text => {
let tmp = Vec::from(payload.as_ref());
match String::from_utf8(tmp) {
2018-04-13 23:02:01 +00:00
Ok(s) => Ok(Async::Ready(Some(Message::Text(s)))),
2018-03-20 18:23:35 +00:00
Err(_) => {
2018-02-27 18:09:24 +00:00
self.closed = true;
Err(ProtocolError::BadEncoding)
2018-02-27 18:09:24 +00:00
}
2017-10-13 23:33:23 +00:00
}
}
}
2017-10-08 04:48:00 +00:00
}
2018-02-26 21:58:23 +00:00
Ok(Async::Ready(None)) => Ok(Async::Ready(None)),
Ok(Async::NotReady) => Ok(Async::NotReady),
2018-02-27 18:09:24 +00:00
Err(e) => {
2018-02-26 21:58:23 +00:00
self.closed = true;
2018-02-27 18:09:24 +00:00
Err(e)
2018-02-26 21:58:23 +00:00
}
2017-10-08 04:48:00 +00:00
}
}
}
/// Common writing methods for a websocket.
pub trait WsWriter {
/// Send a text
2018-05-09 12:48:06 +00:00
fn send_text<T: Into<Binary>>(&mut self, text: T);
/// Send a binary
2018-05-09 12:48:06 +00:00
fn send_binary<B: Into<Binary>>(&mut self, data: B);
/// Send a ping message
2018-05-09 12:48:06 +00:00
fn send_ping(&mut self, message: &str);
/// Send a pong message
2018-05-09 12:48:06 +00:00
fn send_pong(&mut self, message: &str);
/// Close the connection
2018-05-09 12:48:06 +00:00
fn send_close(&mut self, reason: Option<CloseReason>);
}
2017-10-23 00:33:24 +00:00
#[cfg(test)]
mod tests {
2017-11-16 06:06:28 +00:00
use super::*;
2018-04-13 23:02:01 +00:00
use http::{header, HeaderMap, Method, Uri, Version};
2017-12-01 03:01:25 +00:00
use std::str::FromStr;
2017-10-23 00:33:24 +00:00
#[test]
fn test_handshake() {
2018-04-13 23:02:01 +00:00
let req = HttpRequest::new(
Method::POST,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
HeaderMap::new(),
None,
);
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::GetMethodRequired,
handshake(&req).err().unwrap()
);
2018-04-13 23:02:01 +00:00
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
HeaderMap::new(),
None,
);
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoWebsocketUpgrade,
handshake(&req).err().unwrap()
);
2017-10-23 00:33:24 +00:00
let mut headers = HeaderMap::new();
2018-04-29 16:09:08 +00:00
headers.insert(
header::UPGRADE,
header::HeaderValue::from_static("test"),
);
2018-04-13 23:02:01 +00:00
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
headers,
None,
);
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoWebsocketUpgrade,
handshake(&req).err().unwrap()
);
2017-10-23 00:33:24 +00:00
let mut headers = HeaderMap::new();
2018-04-29 16:09:08 +00:00
headers.insert(
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
);
2018-04-13 23:02:01 +00:00
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
headers,
None,
);
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoConnectionUpgrade,
handshake(&req).err().unwrap()
);
2017-10-23 00:33:24 +00:00
let mut headers = HeaderMap::new();
2018-04-29 16:09:08 +00:00
headers.insert(
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
);
headers.insert(
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
);
2018-04-13 23:02:01 +00:00
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
headers,
None,
);
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::NoVersionHeader,
handshake(&req).err().unwrap()
);
2017-10-23 00:33:24 +00:00
let mut headers = HeaderMap::new();
2018-04-29 16:09:08 +00:00
headers.insert(
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
);
headers.insert(
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
);
2018-04-13 23:02:01 +00:00
headers.insert(
header::SEC_WEBSOCKET_VERSION,
header::HeaderValue::from_static("5"),
);
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
headers,
None,
);
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::UnsupportedVersion,
handshake(&req).err().unwrap()
);
2017-10-23 00:33:24 +00:00
let mut headers = HeaderMap::new();
2018-04-29 16:09:08 +00:00
headers.insert(
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
);
headers.insert(
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
);
2018-04-13 23:02:01 +00:00
headers.insert(
header::SEC_WEBSOCKET_VERSION,
header::HeaderValue::from_static("13"),
);
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
headers,
None,
);
2018-04-29 16:09:08 +00:00
assert_eq!(
HandshakeError::BadWebsocketKey,
handshake(&req).err().unwrap()
);
2017-10-23 00:33:24 +00:00
let mut headers = HeaderMap::new();
2018-04-29 16:09:08 +00:00
headers.insert(
header::UPGRADE,
header::HeaderValue::from_static("websocket"),
);
headers.insert(
header::CONNECTION,
header::HeaderValue::from_static("upgrade"),
);
2018-04-13 23:02:01 +00:00
headers.insert(
header::SEC_WEBSOCKET_VERSION,
header::HeaderValue::from_static("13"),
);
2018-04-29 16:09:08 +00:00
headers.insert(
header::SEC_WEBSOCKET_KEY,
header::HeaderValue::from_static("13"),
);
2018-04-13 23:02:01 +00:00
let req = HttpRequest::new(
Method::GET,
Uri::from_str("/").unwrap(),
Version::HTTP_11,
headers,
None,
);
assert_eq!(
StatusCode::SWITCHING_PROTOCOLS,
handshake(&req).unwrap().finish().status()
);
2017-10-23 00:33:24 +00:00
}
2018-02-27 18:09:24 +00:00
#[test]
fn test_wserror_http_response() {
let resp: HttpResponse = HandshakeError::GetMethodRequired.error_response();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::METHOD_NOT_ALLOWED);
let resp: HttpResponse = HandshakeError::NoWebsocketUpgrade.error_response();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
let resp: HttpResponse = HandshakeError::NoConnectionUpgrade.error_response();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
let resp: HttpResponse = HandshakeError::NoVersionHeader.error_response();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
let resp: HttpResponse = HandshakeError::UnsupportedVersion.error_response();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
let resp: HttpResponse = HandshakeError::BadWebsocketKey.error_response();
2018-02-27 18:09:24 +00:00
assert_eq!(resp.status(), StatusCode::BAD_REQUEST);
}
2017-10-23 00:33:24 +00:00
}