diff options
author | Kim Alvefur <zash@zash.se> | 2017-03-06 16:05:57 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-03-06 16:05:57 +0100 |
commit | 12a94eee9180b0aa9d885bfe35b1cab651726511 (patch) | |
tree | 5a6ccfcd8d9fb6e2f2d1d35910732fba43e61132 /plugins/mod_tls.lua | |
parent | fbb5d2716262098026125ab7ae1e2ca8b9bc147f (diff) | |
parent | 69990587c92aacfad843fa8f72d49af5870086f5 (diff) | |
download | prosody-12a94eee9180b0aa9d885bfe35b1cab651726511.tar.gz prosody-12a94eee9180b0aa9d885bfe35b1cab651726511.zip |
Merge 0.10->trunk
Diffstat (limited to 'plugins/mod_tls.lua')
-rw-r--r-- | plugins/mod_tls.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index fbeb344b..48613b9a 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -122,7 +122,7 @@ module:hook("s2s-stream-features", function(event) end); -- For s2sout connections, start TLS if we can -module:hook_stanza("http://etherx.jabber.org/streams", "features", function (session, stanza) +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); @@ -131,7 +131,7 @@ module:hook_stanza("http://etherx.jabber.org/streams", "features", function (ses end end, 500); -module:hook_stanza(xmlns_starttls, "proceed", function (session, stanza) -- luacheck: ignore 212/stanza +module:hook_tag(xmlns_starttls, "proceed", function (session, stanza) -- luacheck: ignore 212/stanza if session.type == "s2sout_unauthed" and can_do_tls(session) then module:log("debug", "Proceeding with TLS on s2sout..."); session:reset_stream(); |