mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_websocket: Add some debug messages
This commit is contained in:
parent
bc5151daff
commit
f758fdb4d6
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue