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/eigrp_structs.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/eigrp_structs.h')
| -rw-r--r-- | eigrpd/eigrp_structs.h | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/eigrpd/eigrp_structs.h b/eigrpd/eigrp_structs.h index 1b9186f011..848fc4f2b2 100644 --- a/eigrpd/eigrp_structs.h +++ b/eigrpd/eigrp_structs.h @@ -69,6 +69,8 @@ struct eigrp_metrics {  };  struct eigrp { +	vrf_id_t vrf_id; +  	uint16_t AS;	 /* Autonomous system number */  	uint16_t vrid;       /* Virtual Router ID */  	uint8_t k_values[6]; /*Array for K values configuration*/  | 
