mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_tls: Build <starttls/> as a stanza instead of with string concatenation
This commit is contained in:
parent
bac4a10b34
commit
3f9b683457
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue