diff options
author | Neale Ranns <neale@graphiant.com> | 2021-08-10 07:39:18 +0000 |
---|---|---|
committer | Ole Tr�an <otroan@employees.org> | 2021-08-11 08:48:42 +0000 |
commit | d6953332db225d5355f50348ef3b09f0525d5282 (patch) | |
tree | 3f4870c12c97f458119d6460e4082de767181c2b /src/plugins | |
parent | 7244a706430746facf20a5f047666b74d440cef8 (diff) |
fib: A 16-8-8 and a 8-8-8-8 versions of an ip4_fib_t
Type: feature
The difference being the MTRIE type they contain.
THE FIB continues to use the 16-8-8 version.
Signed-off-by: Neale Ranns <neale@graphiant.com>
Change-Id: I5a54d4e6e6cc639f18a3fb65ef2925507a7ef1de
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/dhcp/dhcp4_proxy_node.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/plugins/dhcp/dhcp4_proxy_node.c b/src/plugins/dhcp/dhcp4_proxy_node.c index 2ddad25bb11..56e14d422a8 100644 --- a/src/plugins/dhcp/dhcp4_proxy_node.c +++ b/src/plugins/dhcp/dhcp4_proxy_node.c @@ -980,16 +980,14 @@ format_dhcp4_proxy_server (u8 * s, va_list * args) rx_fib = ip4_fib_get (proxy->rx_fib_index); - s = format (s, "%=14u%=16U", - rx_fib->table_id, - format_ip46_address, &proxy->dhcp_src_address, IP46_TYPE_ANY); + s = format (s, "%=14u%=16U", rx_fib->hash.table_id, format_ip46_address, + &proxy->dhcp_src_address, IP46_TYPE_ANY); vec_foreach (server, proxy->dhcp_servers) { server_fib = ip4_fib_get (server->server_fib_index); - s = format (s, "%u,%U ", - server_fib->table_id, - format_ip46_address, &server->dhcp_server, IP46_TYPE_ANY); + s = format (s, "%u,%U ", server_fib->hash.table_id, format_ip46_address, + &server->dhcp_server, IP46_TYPE_ANY); } return s; } |