aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_proxy65.lua
diff options
context:
space:
mode:
authorKim Alvefur <zash@zash.se>2018-11-25 13:14:05 +0100
committerKim Alvefur <zash@zash.se>2018-11-25 13:14:05 +0100
commit25b9a621a3c4f2d6783a37ec2ac917184eb79d5b (patch)
treee713ea09fb970d3cb8216c2a29c40b40069463a5 /plugins/mod_proxy65.lua
parent2dd5ee93572d91455ad7bcf84e9555b756c5ffc5 (diff)
downloadprosody-25b9a621a3c4f2d6783a37ec2ac917184eb79d5b.tar.gz
prosody-25b9a621a3c4f2d6783a37ec2ac917184eb79d5b.zip
mod_proxy65: Return an error if no port is open (fixes #1240)
Diffstat (limited to 'plugins/mod_proxy65.lua')
-rw-r--r--plugins/mod_proxy65.lua6
1 files changed, 6 insertions, 0 deletions
diff --git a/plugins/mod_proxy65.lua b/plugins/mod_proxy65.lua
index cbbfad12..3c65f050 100644
--- a/plugins/mod_proxy65.lua
+++ b/plugins/mod_proxy65.lua
@@ -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}));