diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-02-12 02:32:27 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-02-12 02:32:27 +0500 |
commit | eeca1d016a71fee2b7d6617da3b7a8b0c6c48a77 (patch) | |
tree | e34e264d448899e5d218b41c2f3c670770b48be7 | |
parent | 23cbd2c45e12307a3c98e92b79c6e8db70284f56 (diff) | |
download | prosody-eeca1d016a71fee2b7d6617da3b7a8b0c6c48a77.tar.gz prosody-eeca1d016a71fee2b7d6617da3b7a8b0c6c48a77.zip |
mod_tls: Inlined some code.
-rw-r--r-- | plugins/mod_tls.lua | 27 |
1 files changed, 9 insertions, 18 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index 9b7bc415..15cdb3e3 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -16,25 +16,16 @@ local secure_s2s_only = module:get_option("s2s_require_encryption"); local global_ssl_ctx = prosody.global_ssl_ctx; -function starttls_handler(session, stanza) - if session.conn.starttls then - (session.sends2s or session.send)(st.stanza("proceed", { xmlns = xmlns_starttls })); - session:reset_stream(); - local host = session.to_host or session.host; - local ssl_ctx = host and hosts[host].ssl_ctx_in or global_ssl_ctx; - session.conn:starttls(ssl_ctx); - session.log("info", "TLS negotiation started for %s...", session.type); - session.secure = false; - else - -- FIXME: What reply? - session.log("warn", "Attempt to start TLS, but TLS is not available on this %s connection", session.type); - end -end - module:hook("stanza/urn:ietf:params:xml:ns:xmpp-tls:starttls", function(event) - local origin, stanza = event.origin, event.stanza; - if origin.type == "c2s_unauthed" or origin.type == "s2sin_unauthed" then - starttls_handler(origin, stanza); + local origin = event.origin; + if origin.conn.starttls and origin.type == "c2s_unauthed" or origin.type == "s2sin_unauthed" then + (origin.sends2s or origin.send)(st.stanza("proceed", { xmlns = xmlns_starttls })); + origin:reset_stream(); + local host = origin.to_host or origin.host; + local ssl_ctx = host and hosts[host].ssl_ctx_in or global_ssl_ctx; + origin.conn:starttls(ssl_ctx); + origin.log("info", "TLS negotiation started for %s...", origin.type); + origin.secure = false; else -- FIXME: What reply? origin.log("warn", "Attempt to start TLS, but TLS is not available on this %s connection", origin.type); |