diff options
author | Kim Alvefur <zash@zash.se> | 2015-05-18 21:43:24 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2015-05-18 21:43:24 +0200 |
commit | 6e7394f5f3f6c608b5bb1e3d7de13277850fdaa5 (patch) | |
tree | 2616ea115f5282cf899e06a176cfc84de6fd7239 /plugins/mod_tls.lua | |
parent | 73b562630cacf2976ff4977a9ae017e93638b555 (diff) | |
download | prosody-6e7394f5f3f6c608b5bb1e3d7de13277850fdaa5.tar.gz prosody-6e7394f5f3f6c608b5bb1e3d7de13277850fdaa5.zip |
mod_tls: Build <starttls/> as a stanza instead of with string concatenation
Diffstat (limited to 'plugins/mod_tls.lua')
-rw-r--r-- | plugins/mod_tls.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index f9d2cee9..85fa172a 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -21,6 +21,7 @@ end local xmlns_starttls = 'urn:ietf:params:xml:ns:xmpp-tls'; local starttls_attr = { xmlns = xmlns_starttls }; +local starttls_initiate= st.stanza("starttls", starttls_attr); local starttls_proceed = st.stanza("proceed", starttls_attr); local starttls_failure = st.stanza("failure", starttls_attr); local c2s_feature = st.stanza("starttls", starttls_attr); @@ -116,7 +117,7 @@ module:hook_stanza("http://etherx.jabber.org/streams", "features", function (ses 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); - session.sends2s("<starttls xmlns='"..xmlns_starttls.."'/>"); + session.sends2s(starttls_initiate); return true; end end, 500); |