mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
mod_disco: Send XEP-0115 caps in s2s stream features
Not currently used for anything, but allowed and could be used in the future and might be used by other servers.
This commit is contained in:
parent
d6122ce3a5
commit
a049793c95
1 changed files with 6 additions and 0 deletions
|
@ -153,6 +153,12 @@ module:hook("stream-features", function (event)
|
|||
end
|
||||
end);
|
||||
|
||||
module:hook("s2s-stream-features", function (event)
|
||||
if event.origin.type == "s2sin" then
|
||||
event.features:add_child(get_server_caps_feature());
|
||||
end
|
||||
end);
|
||||
|
||||
-- Handle disco requests to user accounts
|
||||
if module:get_host_type() ~= "local" then return end -- skip for components
|
||||
module:hook("iq-get/bare/http://jabber.org/protocol/disco#info:query", function(event)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue