mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_proxy65: Only handle service discovery requests when no node is present in the request.
This commit is contained in:
parent
8fe41d1d85
commit
7ef80d7a4c
1 changed files with 10 additions and 6 deletions
|
@ -106,16 +106,20 @@ function module.add_host(module)
|
|||
|
||||
module:hook("iq-get/host/http://jabber.org/protocol/disco#info:query", function(event)
|
||||
local origin, stanza = event.origin, event.stanza;
|
||||
origin.send(st.reply(stanza):query("http://jabber.org/protocol/disco#info")
|
||||
:tag("identity", {category='proxy', type='bytestreams', name=name}):up()
|
||||
:tag("feature", {var="http://jabber.org/protocol/bytestreams"}) );
|
||||
return true;
|
||||
if not stanza.tags[1].attr.node then
|
||||
origin.send(st.reply(stanza):query("http://jabber.org/protocol/disco#info")
|
||||
:tag("identity", {category='proxy', type='bytestreams', name=name}):up()
|
||||
:tag("feature", {var="http://jabber.org/protocol/bytestreams"}) );
|
||||
return true;
|
||||
end
|
||||
end, -1);
|
||||
|
||||
module:hook("iq-get/host/http://jabber.org/protocol/disco#items:query", function(event)
|
||||
local origin, stanza = event.origin, event.stanza;
|
||||
origin.send(st.reply(stanza):query("http://jabber.org/protocol/disco#items"));
|
||||
return true;
|
||||
if not stanza.tags[1].attr.node then
|
||||
origin.send(st.reply(stanza):query("http://jabber.org/protocol/disco#items"));
|
||||
return true;
|
||||
end
|
||||
end, -1);
|
||||
|
||||
module:hook("iq-get/host/http://jabber.org/protocol/bytestreams:query", function(event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue