more tests

This commit is contained in:
Nikolay Kim 2017-10-22 17:33:24 -07:00
parent 26989f5591
commit 5699af9795
10 changed files with 173 additions and 9 deletions

View file

@ -19,7 +19,7 @@ impl Route for MyWebSocket {
fn request(req: &mut HttpRequest,
payload: Payload, ctx: &mut HttpContext<Self>) -> RouteResult<Self>
{
let resp = ws::handshake(&req)?;
let resp = ws::handshake(req)?;
ctx.start(resp);
ctx.add_stream(ws::WsStream::new(payload));
Reply::async(MyWebSocket)