X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Ffib%2Ffib_types.api;h=d946ed7889db5bfaad3127e3b2dfcc6704292706;hb=c17776e9fe5accb285e0ef45b56e9380e94801ff;hp=fde2c337190bbf2e4cc645684c7583d8729f7670;hpb=31ed74407643595fdce206e9d7487108fb8b33ab;p=vpp.git diff --git a/src/vnet/fib/fib_types.api b/src/vnet/fib/fib_types.api index fde2c337190..d946ed7889d 100644 --- a/src/vnet/fib/fib_types.api +++ b/src/vnet/fib/fib_types.api @@ -33,7 +33,12 @@ typeonly define fib_mpls_label @param is_unreach - Drop the packet and rate limit send ICMP unreachable @param is_prohibit - Drop the packet and rate limit send ICMP prohibited @param is_udp_encap - The path describes a UDP-o-IP encapsulation. - @param afi - the afi of the next hop, IP46_TYPE_IP4=1, IP46_TYPE_IP6=2 + @param is_dvr - Does the route resolve via a DVR interface. + @param is_source_lookup - The the path is a deaggregate path (i.e. a lookup + in another table) is the lookup on the packet's + source address or destination. + @param afi - dpo_proto_t protocol that describes the next-hop address + @param via_label - The next-hop is a resolved via a local label @param next_hop[16] - the next hop address @param next_hop_id - Used when the path resolves via an object that has a unique identifier. e.g. the UDP @@ -50,10 +55,15 @@ typeonly define fib_path u8 is_udp_encap; u8 is_unreach; u8 is_prohibit; + u8 is_resolve_host; + u8 is_resolve_attached; + u8 is_dvr; + u8 is_source_lookup; u8 afi; u8 next_hop[16]; u32 next_hop_id; u32 rpf_id; + u32 via_label; u8 n_labels; vl_api_fib_mpls_label_t label_stack[16]; };