# HG changeset patch # User Matthew Wild # Date 1254750627 -3600 # Node ID 84027581c995648081bea5589504559c079d0ef8 # Parent 27c1c6e6c58321771df03675cb1aeb86c365b1f8 s2smanager: Mark session as secure if it was negotiating TLS and opens a new stream diff -r 27c1c6e6c583 -r 84027581c995 core/s2smanager.lua --- a/core/s2smanager.lua Mon Oct 05 14:42:56 2009 +0100 +++ b/core/s2smanager.lua Mon Oct 05 14:50:27 2009 +0100 @@ -339,6 +339,10 @@ -- TODO: #29: SASL/TLS on s2s streams session.version = tonumber(attr.version) or 0; + if session.secure == false then + session.secure = true; + end + if session.version >= 1.0 and not (attr.to and attr.from) then log("warn", (session.to_host or "(unknown)").." failed to specify 'to' or 'from' hostname as per RFC"); end