mod_proxy65: Removed useless checks from the event handler.

This commit is contained in:
Waqas Hussain 2010-11-04 19:26:04 +05:00
parent 1337bc1996
commit bac978fe60

View file

@ -209,11 +209,7 @@ end
function handle_to_domain(event)
local origin, stanza = event.origin, event.stanza;
local to_node, to_host, to_resource = jid_split(stanza.attr.to);
if to_node == nil then
local type = stanza.attr.type;
if type == "error" or type == "result" then return; end
if stanza.name == "iq" and type == "get" then
if stanza.attr.type == "get" then
local xmlns = stanza.tags[1].attr.xmlns
if xmlns == "http://jabber.org/protocol/disco#info" then
origin.send(get_disco_info(stanza));
@ -228,7 +224,7 @@ function handle_to_domain(event)
origin.send(st.error_reply(stanza, "cancel", "service-unavailable"));
return true;
end
elseif stanza.name == "iq" and type == "set" then
else -- stanza.attr.type == "set"
module:log("debug", "Received activation request from %s", stanza.attr.from);
local reply, from, to, sid = set_activation(stanza);
if reply ~= nil and from ~= nil and to ~= nil and sid ~= nil then
@ -250,12 +246,11 @@ function handle_to_domain(event)
end
origin.send(st.error_reply(stanza, "cancel", "not-allowed", message));
end
return true;
else
module:log("error", "activation failed: sid: %s, initiator: %s, target: %s", tostring(sid), tostring(from), tostring(to));
end
end
end
return;
end
module:hook("iq/host", handle_to_domain);