diff options
author | vivek <vivek@cumulusnetworks.com> | 2016-08-10 00:55:51 +0200 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2017-02-14 13:58:58 +0100 |
commit | 78b81eaa44d74c988a681b96574a7b6897e7dea0 (patch) | |
tree | 797b8d3d0ad309c04379118527e1e427d6c4d9ea /lib/srcdest_table.c | |
parent | lib: Functions related to AF_ETHERNET (diff) | |
download | frr-78b81eaa44d74c988a681b96574a7b6897e7dea0.tar.xz frr-78b81eaa44d74c988a681b96574a7b6897e7dea0.zip |
lib: Enhance prefix dump for EVPN prefixes
This commit is also taking into account changes related to srcdes
feature introduction in zebra folder.
Signed-off-by: Vivek Venkatraman <vivek@cumulusnetworks.com>
Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com>
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Ticket: CM-12262
Reviewed By: CCR-5065
Testing Done: Manual
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'lib/srcdest_table.c')
-rw-r--r-- | lib/srcdest_table.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/srcdest_table.c b/lib/srcdest_table.c index dd148fa41..04c9eff79 100644 --- a/lib/srcdest_table.c +++ b/lib/srcdest_table.c @@ -242,7 +242,7 @@ srcdest_route_next(struct route_node *rn) } struct route_node * -srcdest_rnode_get (struct route_table *table, union prefix46ptr dst_pu, +srcdest_rnode_get (struct route_table *table, union prefixptr dst_pu, struct prefix_ipv6 *src_p) { struct prefix_ipv6 *dst_p = dst_pu.p6; @@ -253,7 +253,7 @@ srcdest_rnode_get (struct route_table *table, union prefix46ptr dst_pu, } struct route_node * -srcdest_rnode_lookup (struct route_table *table, union prefix46ptr dst_pu, +srcdest_rnode_lookup (struct route_table *table, union prefixptr dst_pu, struct prefix_ipv6 *src_p) { struct prefix_ipv6 *dst_p = dst_pu.p6; |