mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
mod_proxy65: Return an error if no port is open (fixes #1240)
This commit is contained in:
parent
2dd5ee9357
commit
25b9a621a3
1 changed files with 6 additions and 0 deletions
|
@ -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}));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue