diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-04-12 19:38:08 -0400 | 
|---|---|---|
| committer | Rafael Zalamena <rzalamena@opensourcerouting.org> | 2019-08-06 21:10:02 -0300 | 
| commit | c371cd6bf06a0ac0cb280b2cbadaac6a2f86af91 (patch) | |
| tree | 9d638cb93c935d4be63a2929d95552ba78a6b69d /eigrpd/eigrpd.h | |
| parent | 1825b8a216158fa0420239ff6bf73f6a07ad854e (diff) | |
eigrpd: Add vrf_id to `struct eigrp`
Initial setup of adding a vrf_id to the `struct eigrp`.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'eigrpd/eigrpd.h')
| -rw-r--r-- | eigrpd/eigrpd.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/eigrpd/eigrpd.h b/eigrpd/eigrpd.h index 3ef3a9c0cc..aab81e4a75 100644 --- a/eigrpd/eigrpd.h +++ b/eigrpd/eigrpd.h @@ -48,7 +48,7 @@ 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_get(const char *as, vrf_id_t vrf_id);  extern struct eigrp *eigrp_lookup(void);  extern void eigrp_router_id_update(struct eigrp *);  | 
