From: Matthew Wild Date: Thu, 23 Oct 2008 02:53:51 +0000 (+0100) Subject: TLS/SASL no longer should include the connhandler module X-Git-Url: https://git.enpas.org/?a=commitdiff_plain;h=2f6c4ec5d09d841ec41c57c1c7c84d8a73a09ccb;p=prosody.git TLS/SASL no longer should include the connhandler module --- diff --git a/plugins/mod_saslauth.lua b/plugins/mod_saslauth.lua index 1376b87b..24c82a1c 100644 --- a/plugins/mod_saslauth.lua +++ b/plugins/mod_saslauth.lua @@ -13,7 +13,6 @@ local xmlns_sasl ='urn:ietf:params:xml:ns:xmpp-sasl'; local xmlns_bind ='urn:ietf:params:xml:ns:xmpp-bind'; local xmlns_stanzas ='urn:ietf:params:xml:ns:xmpp-stanzas'; -local new_connhandler = require "net.connhandlers".new; local new_sasl = require "util.sasl".new; add_handler("c2s_unauthed", "auth", xmlns_sasl, diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index ab06b9a5..fe787942 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -13,8 +13,6 @@ local log = require "util.logger".init("mod_starttls"); local xmlns_starttls ='urn:ietf:params:xml:ns:xmpp-tls'; -local new_connhandler = require "net.connhandlers".new; - add_handler("c2s_unauthed", "starttls", xmlns_starttls, function (session, stanza) if session.conn.starttls then @@ -35,4 +33,4 @@ add_event_hook("stream-features", if session.conn.starttls then t_insert(features, ""); end - end); \ No newline at end of file + end);