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:
Kim Alvefur 2020-11-23 21:52:46 +01:00
parent b62216fab3
commit 15b64ea4ff

View file

@ -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"] = {