MPLS Unifom mode
[vpp.git] / src / vnet / fib / fib_types.api
1 /*
2  * Copyright (c) 2016 Cisco and/or its affiliates.
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at:
6  *
7  *     http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12  * See the License for the specific language governing permissions and
13  * limitations under the License.
14  */
15  
16 /** \brief MPLS label
17 */
18 typeonly define fib_mpls_label
19 {
20   u8 is_uniform;
21   u32 label;
22   u8 ttl;
23   u8 exp;
24 };
25
26 /** \brief FIB path
27     @param sw_if_index - index of the interface
28     @param weight - The weight, for UCMP
29     @param preference - The preference of the path. lowest preference
30     is prefered
31     @param is_local - local if non-zero, else remote
32     @param is_drop - Drop the packet
33     @param is_unreach - Drop the packet and rate limit send ICMP unreachable
34     @param is_prohibit - Drop the packet and rate limit send ICMP prohibited
35     @param is_udp_encap - The path describes a UDP-o-IP encapsulation.
36     @param afi - the afi of the next hop, IP46_TYPE_IP4=1, IP46_TYPE_IP6=2
37     @param next_hop[16] - the next hop address
38     @param next_hop_id - Used when the path resolves via an object
39                          that has a unique identifier. e.g. the UDP
40                          encap object
41 */
42 typeonly define fib_path
43 {
44   u32 sw_if_index;
45   u32 table_id;
46   u8 weight;
47   u8 preference;
48   u8 is_local;
49   u8 is_drop;
50   u8 is_udp_encap;
51   u8 is_unreach;
52   u8 is_prohibit;
53   u8 afi;
54   u8 next_hop[16];
55   u32 next_hop_id;
56   u32 rpf_id;
57   u8 n_labels;
58   vl_api_fib_mpls_label_t label_stack[16];
59 };