mod_s2s: Reset secure flag on new connection attempt

This commit is contained in:
Kim Alvefur 2013-03-25 19:08:15 +01:00
parent 5c16f18d72
commit ae5806cd67

View file

@ -271,6 +271,10 @@ function s2sout.make_connect(host_session, connect_host, connect_port)
local from_host, to_host = host_session.from_host, host_session.to_host;
-- Reset secure flag in case this is another
-- connection attempt after a failed STARTTLS
host_session.secure = nil;
local conn, handler;
if connect_host.proto == "IPv4" then
conn, handler = socket.tcp();