summaryrefslogtreecommitdiffstats
path: root/zebra/router-id.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2020-07-09 17:57:22 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2020-07-09 17:57:22 +0200
commit03fba42ebb5947d43728ee5d0e07dbbba009c7cf (patch)
treef7271586fc6ab6fc7b6c1dc33567b92edbe4be02 /zebra/router-id.h
parentMerge pull request #6385 from GalaxyGorilla/bfd_igp_topotest (diff)
downloadfrr-03fba42ebb5947d43728ee5d0e07dbbba009c7cf.tar.xz
frr-03fba42ebb5947d43728ee5d0e07dbbba009c7cf.zip
zebra: Allow router-id to be part of the vrf sub node
Modify zebra to accept router-id's as part of the vrf subnode. Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'zebra/router-id.h')
-rw-r--r--zebra/router-id.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/zebra/router-id.h b/zebra/router-id.h
index f7d16853f..c69c321fd 100644
--- a/zebra/router-id.h
+++ b/zebra/router-id.h
@@ -34,12 +34,12 @@
extern "C" {
#endif
-extern void router_id_add_address(struct connected *);
-extern void router_id_del_address(struct connected *);
-extern void router_id_init(struct zebra_vrf *);
+extern void router_id_add_address(struct connected *c);
+extern void router_id_del_address(struct connected *c);
+extern void router_id_init(struct zebra_vrf *zvrf);
extern void router_id_cmd_init(void);
-extern void router_id_write(struct vty *);
-extern void router_id_get(struct prefix *, vrf_id_t);
+extern void router_id_write(struct vty *vty, struct zebra_vrf *zvrf);
+extern void router_id_get(struct prefix *p, struct zebra_vrf *zvrf);
#ifdef __cplusplus
}