summaryrefslogtreecommitdiffstats
path: root/ripngd/ripng_route.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2018-08-03 19:22:48 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2018-08-30 23:47:59 +0200
commitfe08ba7e1103e6c334fe97b44c43f6762ed7c8f3 (patch)
tree96a43faf439e4d06d3fc5ce9024ce65de03b2e17 /ripngd/ripng_route.h
parentlib: Add Aggregate Table and Aggregate_node (diff)
downloadfrr-fe08ba7e1103e6c334fe97b44c43f6762ed7c8f3.tar.xz
frr-fe08ba7e1103e6c334fe97b44c43f6762ed7c8f3.zip
bgpd, ripngd: Convert to using new agg_table/route
Switch bgp and ripngd to use the new aggregate table and route data structures. This was mainly a search and replace operation. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'ripngd/ripng_route.h')
-rw-r--r--ripngd/ripng_route.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ripngd/ripng_route.h b/ripngd/ripng_route.h
index dc7d422d1..e402f4a66 100644
--- a/ripngd/ripng_route.h
+++ b/ripngd/ripng_route.h
@@ -42,11 +42,11 @@ struct ripng_aggregate {
uint16_t tag_out;
};
-extern void ripng_aggregate_increment(struct route_node *rp,
+extern void ripng_aggregate_increment(struct agg_node *rp,
struct ripng_info *rinfo);
-extern void ripng_aggregate_decrement(struct route_node *rp,
+extern void ripng_aggregate_decrement(struct agg_node *rp,
struct ripng_info *rinfo);
-extern void ripng_aggregate_decrement_list(struct route_node *rp,
+extern void ripng_aggregate_decrement_list(struct agg_node *rp,
struct list *list);
extern int ripng_aggregate_add(struct prefix *p);
extern int ripng_aggregate_delete(struct prefix *p);