mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Attempt STARTTLS even if not advertised as per RFC 7590
This commit is contained in:
parent
89944af9a4
commit
2b988f0786
2 changed files with 7 additions and 2 deletions
|
@ -54,6 +54,7 @@
|
|||
<implements rdf:resource="https://www.rfc-editor.org/info/rfc6455"/>
|
||||
<implements rdf:resource="https://www.rfc-editor.org/info/rfc7301"/>
|
||||
<implements rdf:resource="https://www.rfc-editor.org/info/rfc7395"/>
|
||||
<implements rdf:resource="https://www.rfc-editor.org/info/rfc7390"/>
|
||||
<implements rdf:resource="https://datatracker.ietf.org/doc/draft-cridland-xmpp-session/">
|
||||
<!-- since=0.6.0 note=Added in hg:0bbbc9042361 -->
|
||||
</implements>
|
||||
|
|
|
@ -150,8 +150,12 @@ end);
|
|||
-- For s2sout connections, start TLS if we can
|
||||
module:hook_tag("http://etherx.jabber.org/streams", "features", function (session, stanza)
|
||||
module:log("debug", "Received features element");
|
||||
if can_do_tls(session) and stanza:get_child("starttls", xmlns_starttls) then
|
||||
module:log("debug", "%s is offering TLS, taking up the offer...", session.to_host);
|
||||
if can_do_tls(session) then
|
||||
if stanza:get_child("starttls", xmlns_starttls) then
|
||||
module:log("debug", "%s is offering TLS, taking up the offer...", session.to_host);
|
||||
else
|
||||
module:log("debug", "%s is *not* offering TLS, trying anyways!", session.to_host);
|
||||
end
|
||||
session.sends2s(starttls_initiate);
|
||||
return true;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue