diff options
author | Kim Alvefur <zash@zash.se> | 2014-07-04 22:52:34 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2014-07-04 22:52:34 +0200 |
commit | 8003a40b0a3895399912c5042e6e8af41c61eb04 (patch) | |
tree | 4ee710468ebed7a73d392f011b38e251640508f9 /plugins/mod_tls.lua | |
parent | 1440be730c44897aa5f1aed4cf7d7f87e4489334 (diff) | |
download | prosody-8003a40b0a3895399912c5042e6e8af41c61eb04.tar.gz prosody-8003a40b0a3895399912c5042e6e8af41c61eb04.zip |
mod_lastactivity, mod_legacyauth, mod_presence, mod_saslauth, mod_tls: Use the newer stanza:get_child APIs and optimize away some table lookups
Diffstat (limited to 'plugins/mod_tls.lua')
-rw-r--r-- | plugins/mod_tls.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index 5ae083d4..351aaffc 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -108,7 +108,7 @@ end); -- For s2sout connections, start TLS if we can module:hook_stanza("http://etherx.jabber.org/streams", "features", function (session, stanza) module:log("debug", "Received features element"); - if can_do_tls(session) and stanza:child_with_ns(xmlns_starttls) then + 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); session.sends2s("<starttls xmlns='"..xmlns_starttls.."'/>"); return true; |