mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_tls: Verify that TLS is available before proceeding
This commit is contained in:
parent
a7a8fa91e3
commit
272e5d06b4
1 changed files with 1 additions and 1 deletions
|
@ -124,7 +124,7 @@ module:hook_stanza("http://etherx.jabber.org/streams", "features", function (ses
|
|||
end, 500);
|
||||
|
||||
module:hook_stanza(xmlns_starttls, "proceed", function (session, stanza) -- luacheck: ignore 212/stanza
|
||||
if session.type == "s2sout_unauthed" then
|
||||
if session.type == "s2sout_unauthed" and can_do_tls(session) then
|
||||
module:log("debug", "Proceeding with TLS on s2sout...");
|
||||
session:reset_stream();
|
||||
session.conn:starttls(session.ssl_ctx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue