diff options
| author | Olivier Dugeon <olivier.dugeon@orange.com> | 2019-04-15 16:11:40 +0200 | 
|---|---|---|
| committer | Olivier Dugeon <olivier.dugeon@orange.com> | 2019-04-15 16:22:38 +0200 | 
| commit | 9c95fe698634d1663b9f321b588ac4f81d8492c6 (patch) | |
| tree | afb291410a270fd94935108c9a2b2abf315d9fba /isisd/isis_circuit.h | |
| parent | 45ec928f498430930b9696636b22056b0a673b44 (diff) | |
Issue #4032: Add IS-IS-TE support per Area
 - Change MPLS-TE from global to per Area
 - Add new mpls_te_area structure to area in replacement of global variable
isisMPLS_TE
 - Move mpls-te frmo global to instance in frr-isisd.yang
 - Change code in isis_te.c, isis_northbound.c, isis_cli.c, isis_pdu.c,
isis_lsp.c and isis_zebra.c accordingly
Signed-off-by: Olivier Dugeon <olivier.dugeon@orange.com>
Diffstat (limited to 'isisd/isis_circuit.h')
| -rw-r--r-- | isisd/isis_circuit.h | 3 | 
1 files changed, 1 insertions, 2 deletions
diff --git a/isisd/isis_circuit.h b/isisd/isis_circuit.h index e0ea4f78b4..2371c0b73a 100644 --- a/isisd/isis_circuit.h +++ b/isisd/isis_circuit.h @@ -121,8 +121,7 @@ struct isis_circuit {  	uint16_t psnp_interval[2];    /* psnp-interval in seconds */  	uint8_t metric[2];  	uint32_t te_metric[2]; -	struct mpls_te_circuit -		*mtc;   /* Support for MPLS-TE parameters - see isis_te.[c,h] */ +	struct mpls_te_circuit *mtc; /* MPLS-TE parameters */  	int ip_router;  /* Route IP ? */  	int is_passive; /* Is Passive ? */  	struct list *mt_settings;   /* IS-IS MT Settings */  | 
