diff options
author | IJsbrand Wijnands <ice@cisco.com> | 2020-03-05 06:25:32 -0800 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2020-03-06 11:07:59 +0000 |
commit | 79437c8dbc707e6f60e7a2425fac15c4153f71b3 (patch) | |
tree | d1273834ef5c5197b7257403288b1d63856d6e46 | |
parent | 05c7317d07b878b8b5795fed5c1593616a1c1fae (diff) |
fib: path flag FIB_API_PATH_TYPE_INTERFACE_RX not copied to client
This path flag FIB_API_PATH_TYPE_INTERFACE_RX is not copied to the client bin_api.
Type: fix
Change-Id:
Signed-off-by: IJsbrand Wijnands <ice@cisco.com>
Change-Id: I612044d2f564c852f83fceb63ce750a6330e1365
-rw-r--r-- | src/vnet/fib/fib_api.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/vnet/fib/fib_api.c b/src/vnet/fib/fib_api.c index 54cff9273f0..64e288761ed 100644 --- a/src/vnet/fib/fib_api.c +++ b/src/vnet/fib/fib_api.c @@ -418,6 +418,10 @@ fib_api_path_encode (const fib_route_path_t * rpath, out->type = FIB_API_PATH_TYPE_BIER_IMP; out->nh.obj_id = rpath->frp_bier_imp; } + else if (rpath->frp_flags & FIB_ROUTE_PATH_INTF_RX) + { + out->type = FIB_API_PATH_TYPE_INTERFACE_RX; + } else { out->type = FIB_API_PATH_TYPE_NORMAL; |