mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_saslauth: Handle SASL <abort/> properly.
This commit is contained in:
parent
86a1074108
commit
42756c02be
1 changed files with 6 additions and 1 deletions
|
@ -119,8 +119,13 @@ local function sasl_handler(event)
|
|||
end
|
||||
|
||||
module:hook("stanza/urn:ietf:params:xml:ns:xmpp-sasl:auth", sasl_handler);
|
||||
module:hook("stanza/urn:ietf:params:xml:ns:xmpp-sasl:abort", sasl_handler);
|
||||
module:hook("stanza/urn:ietf:params:xml:ns:xmpp-sasl:response", sasl_handler);
|
||||
module:hook("stanza/urn:ietf:params:xml:ns:xmpp-sasl:abort", function(event)
|
||||
local session = event.origin;
|
||||
session.sasl_handler = nil;
|
||||
session.send(build_reply("failure", "aborted"));
|
||||
return true;
|
||||
end);
|
||||
|
||||
local mechanisms_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-sasl' };
|
||||
local bind_attr = { xmlns='urn:ietf:params:xml:ns:xmpp-bind' };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue