mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
core.s2smanager: Add [direction] boolean flags to s2s connections
This will allow representing connections that go both directions
This commit is contained in:
parent
cf236f25f8
commit
1cebbe481b
1 changed files with 2 additions and 0 deletions
|
@ -31,6 +31,7 @@ local function new_incoming(conn)
|
|||
sessionlib.set_logger(host_session);
|
||||
sessionlib.set_conn(host_session, conn);
|
||||
host_session.direction = "incoming";
|
||||
host_session.incoming = true;
|
||||
host_session.hosts = {};
|
||||
incoming_s2s[host_session] = true;
|
||||
return host_session;
|
||||
|
@ -45,6 +46,7 @@ local function new_outgoing(from_host, to_host)
|
|||
host_session.host = from_host;
|
||||
host_session.notopen = true;
|
||||
host_session.direction = "outgoing";
|
||||
host_session.outgoing = true;
|
||||
hosts[from_host].s2sout[to_host] = host_session;
|
||||
return host_session;
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue