mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
Merge 0.11->trunk
This commit is contained in:
commit
b7a02665ea
1 changed files with 4 additions and 1 deletions
|
@ -260,7 +260,10 @@ module:hook("stream-features", function(event)
|
|||
-- FIXME: would be nice to have this check only once and not for every socket
|
||||
if sasl_handler.add_cb_handler then
|
||||
local socket = origin.conn:socket();
|
||||
if socket.getpeerfinished then
|
||||
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 and socket:getpeerfinished() then
|
||||
log("debug", "Channel binding 'tls-unique' supported");
|
||||
sasl_handler:add_cb_handler("tls-unique", tls_unique);
|
||||
else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue