mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_net_multiplex: Tweak debug logging for ALPN case
This commit is contained in:
parent
0fdb85997a
commit
a95af210d1
1 changed files with 1 additions and 2 deletions
|
@ -48,10 +48,9 @@ function listener.onconnect(conn)
|
|||
local sock = conn:socket();
|
||||
if sock.getalpn then
|
||||
local selected_proto = sock:getalpn();
|
||||
module:log("debug", "ALPN selected is %s", selected_proto);
|
||||
local service = service_by_protocol[selected_proto];
|
||||
if service then
|
||||
module:log("debug", "Routing incoming connection to %s", service.name);
|
||||
module:log("debug", "Routing incoming connection to %s based on ALPN %q", service.name, selected_proto);
|
||||
local next_listener = service.listener;
|
||||
conn:setlistener(next_listener);
|
||||
local onconnect = next_listener.onconnect;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue