FD.io VPP
v20.09-64-g4f7b92f0a
Vector Packet Processing
|
Go to the source code of this file.
Data Structures | |
struct | ip6_ll_table_t_ |
A protocol Independent IP multicast FIB table. More... | |
Typedefs | |
typedef struct ip6_ll_table_t_ | ip6_ll_table_t |
A protocol Independent IP multicast FIB table. More... | |
Functions | |
fib_node_index_t | ip6_ll_table_lookup (const ip6_ll_prefix_t *prefix) |
Perfom a longest prefix match in the non-forwarding table. More... | |
fib_node_index_t | ip6_ll_table_lookup_exact_match (const ip6_ll_prefix_t *prefix) |
Perfom an exact match in the non-forwarding table. More... | |
fib_node_index_t | ip6_ll_table_entry_update (const ip6_ll_prefix_t *prefix, fib_route_path_flags_t flags) |
Update an entry in the table. More... | |
void | ip6_ll_table_entry_delete (const ip6_ll_prefix_t *prefix) |
Delete a IP6 link-local entry. More... | |
u32 | ip6_ll_fib_get (u32 sw_if_index) |
For use in the data plane. More... | |
typedef struct ip6_ll_table_t_ ip6_ll_table_t |
A protocol Independent IP multicast FIB table.
For use in the data plane.
Get the underlying ip6 FIB
Definition at line 28 of file ip6_ll_table.c.
void ip6_ll_table_entry_delete | ( | const ip6_ll_prefix_t * | prefix | ) |
Delete a IP6 link-local entry.
prefix | The prefix for the entry to remove |
Definition at line 140 of file ip6_ll_table.c.
fib_node_index_t ip6_ll_table_entry_update | ( | const ip6_ll_prefix_t * | prefix, |
fib_route_path_flags_t | flags | ||
) |
Update an entry in the table.
The falgs determine if the entry is LOCAL, in which case it's a receive, or not, in which case the entry will link to an adjacency.
prefix | The prefix for the entry to add |
Definition at line 106 of file ip6_ll_table.c.
fib_node_index_t ip6_ll_table_lookup | ( | const ip6_ll_prefix_t * | prefix | ) |
Perfom a longest prefix match in the non-forwarding table.
prefix | The prefix to lookup |
Definition at line 36 of file ip6_ll_table.c.
fib_node_index_t ip6_ll_table_lookup_exact_match | ( | const ip6_ll_prefix_t * | prefix | ) |
Perfom an exact match in the non-forwarding table.
prefix | The prefix to lookup |
Definition at line 43 of file ip6_ll_table.c.