mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_saslauth: Only advertise channel binding if a finished message is available
In some cases this method returns nothing, unclear why.
This commit is contained in:
parent
b62216fab3
commit
15b64ea4ff
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ module:hook("stream-features", function(event)
|
|||
local info = socket.info and socket:info();
|
||||
if info.protocol == "TLSv1.3" then
|
||||
log("debug", "Channel binding 'tls-unique' undefined in context of TLS 1.3");
|
||||
elseif socket.getpeerfinished then
|
||||
elseif socket.getpeerfinished and socket:getpeerfinished() then
|
||||
sasl_handler:add_cb_handler("tls-unique", tls_unique);
|
||||
end
|
||||
sasl_handler["userdata"] = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue