mod_websocket: Add some debug messages

This commit is contained in:
Kim Alvefur 2016-12-04 11:52:22 +01:00
parent bc5151daff
commit f758fdb4d6

View file

@ -148,6 +148,7 @@ function handle_request(event)
end); end);
if not wants_xmpp then 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; return 501;
end end
@ -287,6 +288,8 @@ function handle_request(event)
response.headers.sec_webSocket_protocol = "xmpp"; response.headers.sec_webSocket_protocol = "xmpp";
response.headers.access_control_allow_origin = cross_domain; response.headers.access_control_allow_origin = cross_domain;
session.log("debug", "Sending WebSocket handshake");
return ""; return "";
end end