mod_proxy65: Return an error if no port is open (fixes #1240)

This commit is contained in:
Kim Alvefur 2018-11-25 13:14:05 +01:00
parent 2dd5ee9357
commit 25b9a621a3

View file

@ -121,6 +121,12 @@ function module.add_host(module)
return true;
end
if not proxy_port then
module:log("warn", "Not listening on any port");
origin.send(st.error_reply(stanza, "wait", "item-not-found", "Not listening on any port"));
return true;
end
local sid = stanza.tags[1].attr.sid;
origin.send(st.reply(stanza):tag("query", {xmlns="http://jabber.org/protocol/bytestreams", sid=sid})
:tag("streamhost", {jid=host, host=proxy_address, port=proxy_port}));