mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
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.
10 lines
148 B
Lua
10 lines
148 B
Lua
local set = require "util.set";
|
|
|
|
return {
|
|
available = set.new{
|
|
-- mod_bookmarks bundled
|
|
"mod_bookmarks";
|
|
|
|
"s2sout-pre-connect-event";
|
|
};
|
|
};
|