mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
mod_iq: Error reply for IQ to non-existing session. mod_iq now handles all 'iq/full' cases
This commit is contained in:
parent
a76311bca7
commit
5cc04f17ac
1 changed files with 6 additions and 2 deletions
|
@ -1,4 +1,6 @@
|
||||||
|
|
||||||
|
local st = require "util.stanza";
|
||||||
|
|
||||||
local full_sessions = full_sessions;
|
local full_sessions = full_sessions;
|
||||||
local bare_sessions = bare_sessions;
|
local bare_sessions = bare_sessions;
|
||||||
|
|
||||||
|
@ -10,10 +12,12 @@ module:hook("iq/full", function(data)
|
||||||
if session then
|
if session then
|
||||||
-- TODO fire post processing event
|
-- TODO fire post processing event
|
||||||
session.send(stanza);
|
session.send(stanza);
|
||||||
return true;
|
|
||||||
else -- resource not online
|
else -- resource not online
|
||||||
-- TODO error reply
|
if stanza.attr.type == "get" or stanza.attr.type == "set" then
|
||||||
|
origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
return true;
|
||||||
end);
|
end);
|
||||||
|
|
||||||
module:hook("iq/bare", function(data)
|
module:hook("iq/bare", function(data)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue