mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
TLS/SASL no longer should include the connhandler module
This commit is contained in:
parent
ece9ac9761
commit
59dd4ed3cd
2 changed files with 1 additions and 4 deletions
|
@ -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,
|
||||
|
|
|
@ -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, "<starttls xmlns='"..xmlns_starttls.."'/>");
|
||||
end
|
||||
end);
|
||||
end);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue