mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
more tests
This commit is contained in:
parent
26989f5591
commit
5699af9795
10 changed files with 173 additions and 9 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue