diff options
author | Kim Alvefur <zash@zash.se> | 2022-08-18 03:26:32 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2022-08-18 03:26:32 +0200 |
commit | 20afe7d20dfde84a9deb6ed4f85a6e7a9429f09c (patch) | |
tree | 9c22770ef4c2a69d5132ee4288042c1a2ac1fa2d /core/features.lua | |
parent | 8ef7bc2cf4d430c96e2b9b1876ba406c7c03aba9 (diff) | |
download | prosody-20afe7d20dfde84a9deb6ed4f85a6e7a9429f09c.tar.gz prosody-20afe7d20dfde84a9deb6ed4f85a6e7a9429f09c.zip |
mod_s2s: Add event where resolver for s2sout can be tweaked
Could be used to implement custom connection methods (c.f. mod_onions)
without needing to duplicate the rest of route_to_new_session().
Adds a feature to enable detection since it can be difficult to detect
support for an event otherwise.
Diffstat (limited to 'core/features.lua')
-rw-r--r-- | core/features.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/features.lua b/core/features.lua index 7248f881..35df5636 100644 --- a/core/features.lua +++ b/core/features.lua @@ -4,5 +4,7 @@ return { available = set.new{ -- mod_bookmarks bundled "mod_bookmarks"; + + "s2sout-pre-connect-event"; }; }; |