mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 13:47:41 +03:00
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.
This commit is contained in:
parent
8ef7bc2cf4
commit
20afe7d20d
2 changed files with 6 additions and 0 deletions
|
@ -4,5 +4,7 @@ return {
|
||||||
available = set.new{
|
available = set.new{
|
||||||
-- mod_bookmarks bundled
|
-- mod_bookmarks bundled
|
||||||
"mod_bookmarks";
|
"mod_bookmarks";
|
||||||
|
|
||||||
|
"s2sout-pre-connect-event";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -230,6 +230,10 @@ function route_to_new_session(event)
|
||||||
resolver;
|
resolver;
|
||||||
});
|
});
|
||||||
end
|
end
|
||||||
|
|
||||||
|
local pre_event = { session = host_session; resolver = resolver };
|
||||||
|
module:context(from_host):fire_event("s2sout-pre-connect", pre_event);
|
||||||
|
resolver = pre_event.resolver;
|
||||||
connect(resolver, listener, nil, { session = host_session });
|
connect(resolver, listener, nil, { session = host_session });
|
||||||
m_initiated_connections:with_labels(from_host):add(1)
|
m_initiated_connections:with_labels(from_host):add(1)
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue