aboutsummaryrefslogtreecommitdiffstats
path: root/core/s2smanager.lua
diff options
context:
space:
mode:
authorWaqas Hussain <waqas20@gmail.com>2011-01-10 21:11:06 +0500
committerWaqas Hussain <waqas20@gmail.com>2011-01-10 21:11:06 +0500
commit2da3143c9dbbf47e96677cdbd3c55c558c61ea53 (patch)
tree1a190b9fb5b848745ce0a60d00f90965cba842d0 /core/s2smanager.lua
parentadbc8099457cab6d3da92df59068bf14dc0a9847 (diff)
downloadprosody-2da3143c9dbbf47e96677cdbd3c55c558c61ea53.tar.gz
prosody-2da3143c9dbbf47e96677cdbd3c55c558c61ea53.zip
s2smanager: Don't bounce error replies for error and result stanzas.
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r--core/s2smanager.lua9
1 files changed, 4 insertions, 5 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua
index 2af5ec1a..1d038433 100644
--- a/core/s2smanager.lua
+++ b/core/s2smanager.lua
@@ -70,8 +70,7 @@ local function bounce_sendq(session, reason)
};
for i, data in ipairs(sendq) do
local reply = data[2];
- local xmlns = reply.attr.xmlns;
- if not(xmlns) and bouncy_stanzas[reply.name] then
+ if reply and not(reply.attr.xmlns) and bouncy_stanzas[reply.name] then
reply.attr.type = "error";
reply:tag("error", {type = "cancel"})
:tag("remote-server-not-found", {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}):up();
@@ -98,8 +97,8 @@ function send_to_host(from_host, to_host, data)
(host.log or log)("debug", "trying to send over unauthed s2sout to "..to_host);
-- Queue stanza until we are able to send it
- if host.sendq then t_insert(host.sendq, {tostring(data), st.reply(data)});
- else host.sendq = { {tostring(data), st.reply(data)} }; end
+ if host.sendq then t_insert(host.sendq, {tostring(data), data.attr.type ~= "error" and data.attr.type ~= "result" and st.reply(data)});
+ else host.sendq = { {tostring(data), data.attr.type ~= "error" and data.attr.type ~= "result" and st.reply(data)} }; end
host.log("debug", "stanza [%s] queued ", data.name);
elseif host.type == "local" or host.type == "component" then
log("error", "Trying to send a stanza to ourselves??")
@@ -121,7 +120,7 @@ function send_to_host(from_host, to_host, data)
local host_session = new_outgoing(from_host, to_host);
-- Store in buffer
- host_session.sendq = { {tostring(data), st.reply(data)} };
+ host_session.sendq = { {tostring(data), data.attr.type ~= "error" and data.attr.type ~= "result" and st.reply(data)} };
log("debug", "stanza [%s] queued until connection complete", tostring(data.name));
if (not host_session.connecting) and (not host_session.conn) then
log("warn", "Connection to %s failed already, destroying session...", to_host);