summaryrefslogtreecommitdiffstats
path: root/isisd/isisd.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@cumulusnetworks.com>2019-04-13 02:09:54 +0200
committerDonald Sharp <sharpd@cumulusnetworks.com>2019-09-10 16:10:22 +0200
commit260fcb956b1fb4e98bfdfb10cfbe01c982af32bf (patch)
treefb90edf98c3cf311324d6229a74cf1584486bfb8 /isisd/isisd.h
parentospf6: Add vrf_id to the ospf6 data structure (diff)
downloadfrr-260fcb956b1fb4e98bfdfb10cfbe01c982af32bf.tar.xz
frr-260fcb956b1fb4e98bfdfb10cfbe01c982af32bf.zip
isisd: Add vrf_id to the main isis structure
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'isisd/isisd.h')
-rw-r--r--isisd/isisd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/isisd/isisd.h b/isisd/isisd.h
index 393b1d67c..b07120049 100644
--- a/isisd/isisd.h
+++ b/isisd/isisd.h
@@ -63,6 +63,7 @@ extern struct zebra_privs_t isisd_privs;
struct fabricd;
struct isis {
+ vrf_id_t vrf_id;
unsigned long process_id;
int sysid_set;
uint8_t sysid[ISIS_SYS_ID_LEN]; /* SystemID for this IS */
@@ -190,7 +191,7 @@ struct isis_area {
DECLARE_QOBJ_TYPE(isis_area)
void isis_init(void);
-void isis_new(unsigned long);
+void isis_new(unsigned long process_id, vrf_id_t vrf_id);
struct isis_area *isis_area_create(const char *);
struct isis_area *isis_area_lookup(const char *);
int isis_area_get(struct vty *vty, const char *area_tag);