mirror of
https://github.com/actix/actix-web.git
synced 2025-04-05 09:39:37 +00:00
Fix test for websocket ping
This commit is contained in:
parent
81230a7cb1
commit
06f98e64aa
2 changed files with 4 additions and 1 deletions
|
@ -24,7 +24,7 @@ invalid-ping-payload = ["actix-http/invalid-ping-payload"]
|
|||
[dependencies]
|
||||
actix = "0.8.3"
|
||||
actix-web = "1.0.3"
|
||||
actix-http = "0.2.5"
|
||||
actix-http = { path = "../actix-http" } # "0.2.5"
|
||||
actix-codec = "0.1.2"
|
||||
bytes = "0.4"
|
||||
futures = "0.1.25"
|
||||
|
|
|
@ -15,6 +15,9 @@ impl Actor for Ws {
|
|||
impl StreamHandler<ws::Message, ws::ProtocolError> for Ws {
|
||||
fn handle(&mut self, msg: ws::Message, ctx: &mut Self::Context) {
|
||||
match msg {
|
||||
#[cfg(feature = "invalid-ping-payload")]
|
||||
ws::Message::Ping(msg) => ctx.pong(&msg),
|
||||
#[cfg(not(feature = "invalid-ping-payload"))]
|
||||
ws::Message::Ping(msg) => ctx.pong(msg),
|
||||
ws::Message::Text(text) => ctx.text(text),
|
||||
ws::Message::Binary(bin) => ctx.binary(bin),
|
||||
|
|
Loading…
Reference in a new issue