mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Log (debug) messages about channel binding
This commit is contained in:
parent
945ec3c73e
commit
a375a34332
1 changed files with 5 additions and 0 deletions
|
@ -250,11 +250,16 @@ module:hook("stream-features", function(event)
|
||||||
if sasl_handler.add_cb_handler then
|
if sasl_handler.add_cb_handler then
|
||||||
local socket = origin.conn:socket();
|
local socket = origin.conn:socket();
|
||||||
if socket.getpeerfinished then
|
if socket.getpeerfinished then
|
||||||
|
log("debug", "Channel binding 'tls-unique' supported");
|
||||||
sasl_handler:add_cb_handler("tls-unique", tls_unique);
|
sasl_handler:add_cb_handler("tls-unique", tls_unique);
|
||||||
|
else
|
||||||
|
log("debug", "Channel binding 'tls-unique' not supported (by LuaSec?)");
|
||||||
end
|
end
|
||||||
sasl_handler["userdata"] = {
|
sasl_handler["userdata"] = {
|
||||||
["tls-unique"] = socket;
|
["tls-unique"] = socket;
|
||||||
};
|
};
|
||||||
|
else
|
||||||
|
log("debug", "Channel binding not supported by SASL handler");
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
local mechanisms = st.stanza("mechanisms", mechanisms_attr);
|
local mechanisms = st.stanza("mechanisms", mechanisms_attr);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue