mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
mod_proxy65: Return service-unavailable error when receiving an iq we didn't understand
This commit is contained in:
parent
f0ff564c36
commit
5492f0aebd
1 changed files with 3 additions and 0 deletions
|
@ -236,6 +236,9 @@ function handle_to_domain(origin, stanza)
|
|||
elseif xmlns == "http://jabber.org/protocol/bytestreams" then
|
||||
origin.send(get_stream_host(origin, stanza));
|
||||
return true;
|
||||
else
|
||||
origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
|
||||
return true;
|
||||
end
|
||||
elseif stanza.name == "iq" and type == "set" then
|
||||
local reply, from, to, sid = set_activation(stanza);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue