Don't error if the original s2s connection has closed before we get the dialback result

This commit is contained in:
Matthew Wild 2008-11-19 21:07:40 +00:00
parent 43c5342160
commit 761c52771a

View file

@ -55,8 +55,12 @@ add_handler({ "s2sout_unauthed", "s2sout" }, "verify", xmlns_dialback,
log("warn", "dialback for "..(origin.dialback_verifying.from_host or "(unknown)").." failed");
valid = "invalid";
end
origin.dialback_verifying.sends2s(format("<db:result from='%s' to='%s' id='%s' type='%s'>%s</db:result>",
attr.from, attr.to, attr.id, valid, origin.dialback_verifying.dialback_key));
if not origin.dialback_verifying.sends2s then
log("warn", "Incoming s2s session was closed in the meantime, so we can't notify it of the db result");
else
origin.dialback_verifying.sends2s(format("<db:result from='%s' to='%s' id='%s' type='%s'>%s</db:result>",
attr.from, attr.to, attr.id, valid, origin.dialback_verifying.dialback_key));
end
end
end);