diff options
author | Florin Coras <fcoras@cisco.com> | 2019-12-30 21:53:19 -0800 |
---|---|---|
committer | Dave Barach <openvpp@barachs.net> | 2020-01-02 16:34:33 +0000 |
commit | 95cd864382965292df9c2ffbd61285c5d45cfb50 (patch) | |
tree | 7fe915ab069ad430ba49d6de485a9541137a7a6f /src/vnet/session/application_local.c | |
parent | 4ed2598562b1fe65efe69ae53397dfe9f1f07be8 (diff) |
session: fix listener global endpoint lookup
Type: fix
Ensure listeners for app transport protocols are added to lookup tables
using their session endpoints instead of their transport connections,
which can override the network connection id in the transport connection.
Change-Id: I56fa3666bb1422c0799fc7143cd099751ff6e2e6
Signed-off-by: Florin Coras <fcoras@cisco.com>
Diffstat (limited to 'src/vnet/session/application_local.c')
-rw-r--r-- | src/vnet/session/application_local.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vnet/session/application_local.c b/src/vnet/session/application_local.c index 97cda12b7da..25fb39e094b 100644 --- a/src/vnet/session/application_local.c +++ b/src/vnet/session/application_local.c @@ -398,7 +398,7 @@ global_scope: return VNET_API_ERROR_APP_CONNECT_SCOPE; fib_proto = session_endpoint_fib_proto (sep); - table_index = application_session_table (app, fib_proto); + table_index = session_lookup_get_index_for_fib (fib_proto, sep->fib_index); ll = session_lookup_listener_wildcard (table_index, sep); if (ll) |