FD.io VPP  v20.05-21-gb1500e9ff
Vector Packet Processing
fib_entry_src_drop.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 
19 /**
20  * Source initialisation Function
21  */
22 static void
24 {
26 }
27 
28 static void
30 {
32 }
33 
34 static void
36  const fib_entry_t *entry,
39  const dpo_id_t *dpo)
40 {
43  dpo);
44 }
45 
46 const static fib_entry_src_vft_t drop_src_vft = {
48  .fesv_add = fib_entry_src_drop_add,
49  .fesv_remove = fib_entry_src_drop_remove,
50 };
51 
52 void
54 {
56  &drop_src_vft);
57 }
58 
59 
fib_entry_src_init_t fesv_init
An entry in a FIB table.
Definition: fib_entry.h:305
If your adding a new source from a plugin pick one of these.
Definition: fib_source.h:201
Virtual function table each FIB entry source will register.
Information related to the source of a FIB entry.
Definition: fib_entry.h:197
fib_node_index_t fib_path_list_create_special(dpo_proto_t nh_proto, fib_path_list_flags_t flags, const dpo_id_t *dpo)
vl_api_address_t src
Definition: gre.api:54
static void fib_entry_src_drop_init(fib_entry_src_t *src)
Source initialisation Function.
enum dpo_proto_t_ dpo_proto_t
Data path protocol.
static void fib_entry_src_drop_remove(fib_entry_src_t *src)
The identity of a DPO is a combination of its type and its instance number/index of objects of that t...
Definition: dpo.h:170
vl_api_ip_proto_t proto
Definition: acl_types.api:50
void fib_entry_src_drop_register(void)
u32 flags
Definition: vhost_user.h:248
Definition: fib_entry.h:177
enum fib_entry_flag_t_ fib_entry_flag_t
fib_entry_src_flag_t fes_flags
Flags on the source.
Definition: fib_entry.h:221
fib_node_index_t fes_pl
The path-list created by the source.
Definition: fib_entry.h:206
#define FIB_NODE_INDEX_INVALID
Definition: fib_types.h:31
static void fib_entry_src_drop_add(fib_entry_src_t *src, const fib_entry_t *entry, fib_entry_flag_t flags, dpo_proto_t proto, const dpo_id_t *dpo)
void fib_entry_src_behaviour_register(fib_source_behaviour_t bh, const fib_entry_src_vft_t *vft)
Definition: fib_entry_src.c:61