mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_tls: Don't try to start TLS if we can't actually do it (thanks Florob)
This commit is contained in:
parent
74eb36a462
commit
ed822f1ef0
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ module:hook("s2s-stream-features",
|
||||||
module:hook_stanza(xmlns_stream, "features",
|
module:hook_stanza(xmlns_stream, "features",
|
||||||
function (session, stanza)
|
function (session, stanza)
|
||||||
module:log("debug", "Received features element");
|
module:log("debug", "Received features element");
|
||||||
if stanza:child_with_ns(xmlns_starttls) then
|
if session.conn.starttls and stanza:child_with_ns(xmlns_starttls) then
|
||||||
module:log("%s is offering TLS, taking up the offer...", session.to_host);
|
module:log("%s is offering TLS, taking up the offer...", session.to_host);
|
||||||
session.sends2s("<starttls xmlns='"..xmlns_starttls.."'/>");
|
session.sends2s("<starttls xmlns='"..xmlns_starttls.."'/>");
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue