diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-02-24 02:11:19 -0800 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-03-05 18:41:12 +0000 |
commit | 53da221b13225695516ec7469ca29d82bb10e594 (patch) | |
tree | 10f31c7fd4acd536cef4793b5c542938da7f09dc /src/vnet.am | |
parent | 0e7fe4fddb493350cf78c8126e9cc93d55490c42 (diff) |
IP6 link-local table
- IPv6 link local table is a per-SW interface array of IPv6 unicast FIBs
- the per-interface ocst is sizeof(fib_table_t) which is small,
w.r.t. the cost of an interface
- FE80::/10 in the 'global' table points to a DPO that performs a lookup in the
input interface's LL fib.
Change-Id: Ice834b25ebeeacb2e929d7c864d7ec8c09918cbe
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
Diffstat (limited to 'src/vnet.am')
-rw-r--r-- | src/vnet.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/vnet.am b/src/vnet.am index c787eb37703..e1e69b1827c 100644 --- a/src/vnet.am +++ b/src/vnet.am @@ -349,6 +349,8 @@ libvnet_la_SOURCES += \ vnet/ip/ip4_reassembly.c \ vnet/ip/ip6_format.c \ vnet/ip/ip6_forward.c \ + vnet/ip/ip6_ll_table.c \ + vnet/ip/ip6_ll_types.c \ vnet/ip/ip6_punt_drop.c \ vnet/ip/ip6_hop_by_hop.c \ vnet/ip/ip6_input.c \ @@ -1130,6 +1132,7 @@ libvnet_la_SOURCES += \ vnet/dpo/dpo.c \ vnet/dpo/drop_dpo.c \ vnet/dpo/ip_null_dpo.c \ + vnet/dpo/ip6_ll_dpo.c \ vnet/dpo/punt_dpo.c \ vnet/dpo/receive_dpo.c \ vnet/dpo/load_balance.c \ |