diff options
author | Renato Westphal <renatowestphal@gmail.com> | 2017-04-27 19:55:23 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-13 19:08:00 +0200 |
commit | 63863c4797d0f41f5369b37285de78259b38742f (patch) | |
tree | 818d851f08e56571dc26a938a6c9f76fda46bf97 /eigrpd/eigrpd.h | |
parent | eigrpd: Some Basic Corrections (diff) | |
download | frr-63863c4797d0f41f5369b37285de78259b38742f.tar.xz frr-63863c4797d0f41f5369b37285de78259b38742f.zip |
eigrpd: Diverse Fixes
* Correct the metric calculation as well as the default metrics;
* Do not show invalid routes in the "show ip eigrp topology".
* Add support to VRFs;
* When downloading a neighbor remove the related routes;
* Fix bugs in the parser of packages they were creating
Invalid default routes;
* Add and remove routes in the zebra;
* Add command "on router eigrp AS";
* Make "delay" and "bandwitch" commands work as well as
Display them in running config;
* Add "no" version of several commands;
* Fix a serious momory leaks;
* Fix segfault when there is no 'successor' route to a
Given prefix;
* Other minor corrections;
Signed-off-by: Renato Westphal <renatowestphal@gmail.com>
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrpd.h')
-rw-r--r-- | eigrpd/eigrpd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/eigrpd/eigrpd.h b/eigrpd/eigrpd.h index 61d4ba752..901d413c0 100644 --- a/eigrpd/eigrpd.h +++ b/eigrpd/eigrpd.h @@ -46,6 +46,7 @@ extern struct eigrp_master *eigrp_om; /* Prototypes */ extern void eigrp_master_init (void); extern void eigrp_terminate (void); + extern void eigrp_finish_final (struct eigrp *); extern void eigrp_finish (struct eigrp *); extern struct eigrp *eigrp_get (const char *); extern struct eigrp *eigrp_lookup (void); |