diff options
author | Florin Coras <fcoras@cisco.com> | 2018-08-28 11:32:04 -0700 |
---|---|---|
committer | Damjan Marion <dmarion@me.com> | 2018-08-30 21:01:45 +0000 |
commit | 134a996a0279577080b626d5172c1739efa00b92 (patch) | |
tree | 4e2bcc3c36ba5aa410622ac0de709f4ea8843e25 /src/vnet/session/session.api | |
parent | ac5554c960a8679f56b62effeec31671e04a13cb (diff) |
vcl: add support for multi-worker apps
Add basic support for app registration of multiple workers. LDP does not
work with multi-worker apps.
Change-Id: I3fc421a2a591a077b275827463f874b261415a63
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/session.api')
-rw-r--r-- | src/vnet/session/session.api | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/vnet/session/session.api b/src/vnet/session/session.api index 5a38340a450..24ebfba5dba 100644 --- a/src/vnet/session/session.api +++ b/src/vnet/session/session.api @@ -408,6 +408,7 @@ define connect_session_reply { @param context - sender context, to match reply w/ request @param evt_q_address - address of the mq in ssvm segment @param peer_evt_q_address - address of peer's mq in ssvm segment + @param wrk_index - index of worker to receive the registration @param n_fds - number of fds exchanged @param fd_flags - flag indicating the fds that will be exchanged over api socket @@ -418,6 +419,7 @@ autoreply define app_cut_through_registration_add u32 context; u64 evt_q_address; u64 peer_evt_q_address; + u32 wrk_index; u8 n_fds; u8 fd_flags; }; |