mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_s2s: Reset secure flag on new connection attempt
This commit is contained in:
parent
5c16f18d72
commit
ae5806cd67
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
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;
|
local conn, handler;
|
||||||
if connect_host.proto == "IPv4" then
|
if connect_host.proto == "IPv4" then
|
||||||
conn, handler = socket.tcp();
|
conn, handler = socket.tcp();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue