From: Neale Ranns Date: Tue, 3 Jul 2018 13:41:47 +0000 (-0400) Subject: add 'src-lookup' keyword for FIB paths X-Git-Tag: v18.07-rc1~57 X-Git-Url: https://gerrit.fd.io/r/gitweb?p=vpp.git;a=commitdiff_plain;h=680f2792128d0535060a3d2641fc5f8b4b9105f7 add 'src-lookup' keyword for FIB paths Change-Id: I4554d1e94bd70ef5b3b0aaeb1a0fceaeb81c5f96 Signed-off-by: Neale Ranns --- diff --git a/src/vnet/fib/fib_types.c b/src/vnet/fib/fib_types.c index 035f70036eb..1046e45b2f7 100644 --- a/src/vnet/fib/fib_types.c +++ b/src/vnet/fib/fib_types.c @@ -495,6 +495,10 @@ unformat_fib_route_path (unformat_input_t * input, va_list * args) rpath->frp_proto = DPO_PROTO_MPLS; *payload_proto = DPO_PROTO_MPLS; } + else if (unformat (input, "src-lookup")) + { + rpath->frp_flags |= FIB_ROUTE_PATH_SOURCE_LOOKUP; + } else if (unformat (input, "l2-input-on %U", unformat_vnet_sw_interface, vnm,