aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_websocket.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2016-03-23 14:31:35 +0100
committerKim Alvefur <zash@zash.se>2016-03-23 14:31:35 +0100
commita50a9d99a069b8e7b4924389c2ebace1906310f9 (patch)
treeb4117f7349f6e491fe2adbee2094ede18b9dad95 /plugins/mod_websocket.lua
parentc50a32df40853786330503ea52ffea6c040a212b (diff)
downloadprosody-a50a9d99a069b8e7b4924389c2ebace1906310f9.tar.gz
prosody-a50a9d99a069b8e7b4924389c2ebace1906310f9.zip
mod_websocket: Remove warning about unsolicited pong frames "MAY be sent unsolicited" per RFC 6455 (thanks mt)
Diffstat (limited to 'plugins/mod_websocket.lua')
-rw-r--r--plugins/mod_websocket.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua
index 274e587a..ecbfabdd 100644
--- a/plugins/mod_websocket.lua
+++ b/plugins/mod_websocket.lua
@@ -226,8 +226,7 @@ function handle_request(event)
frame.opcode = 0xA;
conn:write(build_frame(frame));
return "";
- elseif opcode == 0xA then -- Pong frame
- module:log("warn", "Received unexpected pong frame: " .. tostring(frame.data));
+ elseif opcode == 0xA then -- Pong frame, MAY be sent unsolicited, eg as keepalive
return "";
else
log("warn", "Received frame with unsupported opcode %i", opcode);