FD.io VPP  v17.07.01-10-g3be13f0
Vector Packet Processing
fib_entry_src_default.c
Go to the documentation of this file.
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 #include "fib_entry.h"
17 #include "fib_entry_src.h"
18 #include "fib_path_list.h"
19 
20 /**
21  * Source initialisation Function
22  */
23 static void
25 {
26 }
27 
28 /**
29  * Source deinitialisation Function
30  */
31 static void
33 {
34 }
35 
36 static void
38 {
39 }
40 
41 /**
42  * Source deinitialisation Function
43  */
44 static void
46 {
47 }
48 
49 static void
51  fib_protocol_t proto,
52  const ip46_address_t *next_hop,
53  u32 next_hop_sw_if_index,
54  u32 next_hop_fib_index,
55  u32 next_hop_weight)
56 {
57 }
58 
59 static void
61  fib_protocol_t proto,
62  const ip46_address_t *next_hop,
63  u32 next_hop_sw_if_index,
64  u32 next_hop_fib_index,
65  u32 next_hop_weight)
66 {
67 }
68 
69 
70 /*
71  * Source activate.
72  * Called when the source is teh new longer best source on the entry
73  */
74 static void
76  const fib_entry_t *fib_entry)
77 {
78 }
79 
80 /*
81  * Source Deactivate.
82  * Called when the source is no longer best source on the entry
83  */
84 static void
86  const fib_entry_t *fib_entry)
87 {
88 }
89 
90 static void
93  fib_protocol_t proto)
94 {
95 }
96 
97 static void
99 {
100 }
101 
102 const static fib_entry_src_vft_t default_src_vft = {
104  .fesv_deinit = fib_entry_src_default_deinit,
105  .fesv_add = fib_entry_src_default_add,
106  .fesv_remove = fib_entry_src_default_remove,
107  .fesv_path_add = fib_entry_src_default_path_add,
108  .fesv_path_remove = fib_entry_src_default_path_remove,
109  .fesv_activate = fib_entry_src_default_activate,
110  .fesv_deactivate = fib_entry_src_default_deactivate,
111 };
112 
113 void
115 {
116  fib_source_t source;
117 
118  FOR_EACH_FIB_SOURCE(source) {
119  fib_entry_src_register(source, &default_src_vft);
120  }
121 }
fib_entry_src_init_t fesv_init
An entry in a FIB table.
Definition: fib_entry.h:380
static void fib_entry_src_default_init(fib_entry_src_t *src)
Source initialisation Function.
Virtual function table each FIB entry source will register.
Information related to the source of a FIB entry.
Definition: fib_entry.h:289
static void fib_entry_src_cover_change(fib_entry_src_t *src)
void fib_entry_src_default_register(void)
enum fib_protocol_t_ fib_protocol_t
Protocol Type.
enum fib_source_t_ fib_source_t
The different sources that can create a route.
static void fib_entry_src_default_path_add(fib_entry_src_t *src, fib_protocol_t proto, const ip46_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_fib_index, u32 next_hop_weight)
static void fib_entry_src_default_remove(fib_entry_src_t *src)
#define FOR_EACH_FIB_SOURCE(_item)
Definition: fib_entry.h:156
enum fib_entry_flag_t_ fib_entry_flag_t
unsigned int u32
Definition: types.h:88
static void fib_entry_src_default_deinit(fib_entry_src_t *src)
Source deinitialisation Function.
static void fib_entry_src_default_activate(fib_entry_src_t *src, const fib_entry_t *fib_entry)
void fib_entry_src_register(fib_source_t source, const fib_entry_src_vft_t *vft)
Definition: fib_entry_src.c:39
static void fib_entry_src_default_add(fib_entry_src_t *src, fib_entry_flag_t flags, fib_protocol_t proto)
static void fib_entry_src_default_deactivate(fib_entry_src_t *src, const fib_entry_t *fib_entry)
u32 flags
Definition: vhost-user.h:76
static void fib_entry_src_default_path_remove(fib_entry_src_t *src, fib_protocol_t proto, const ip46_address_t *next_hop, u32 next_hop_sw_if_index, u32 next_hop_fib_index, u32 next_hop_weight)