mod_proxy65: Return service-unavailable error when receiving an iq we didn't understand

This commit is contained in:
Matthew Wild 2010-05-05 15:32:16 +01:00
parent f0ff564c36
commit 5492f0aebd

View file

@ -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);