diff options
-rw-r--r-- | plugins/mod_websocket.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_websocket.lua b/plugins/mod_websocket.lua index ea736800..26f4c124 100644 --- a/plugins/mod_websocket.lua +++ b/plugins/mod_websocket.lua @@ -148,6 +148,7 @@ function handle_request(event) end); if not wants_xmpp then + module:log("debug", "Client didn't want to talk XMPP, list of protocols was %s", request.headers.sec_websocket_protocol or "(empty)"); return 501; end @@ -287,6 +288,8 @@ function handle_request(event) response.headers.sec_webSocket_protocol = "xmpp"; response.headers.access_control_allow_origin = cross_domain; + session.log("debug", "Sending WebSocket handshake"); + return ""; end |