diff options
author | Carmine Scarpitta <carmine.scarpitta@uniroma2.it> | 2023-05-25 12:13:33 +0200 |
---|---|---|
committer | Carmine Scarpitta <carmine.scarpitta@uniroma2.it> | 2023-09-11 22:11:42 +0200 |
commit | 3740efacfbd41f089f148e5543d064ea3a4b6a51 (patch) | |
tree | 2478618af1e5496740881976f6cb856ed6308353 /isisd/isis_tlvs.h | |
parent | isisd: Add SRv6 LAN End.X SID Sub-TLV data struct (diff) | |
download | frr-3740efacfbd41f089f148e5543d064ea3a4b6a51.tar.xz frr-3740efacfbd41f089f148e5543d064ea3a4b6a51.zip |
isisd: Add SRv6 End.X SID to IS ext reach Sub-TLVs
Add SRv6 End.X SID Sub-TLV and SRv6 LAN End.X SID Sub-TLV to the
Extended IS Reachability Sub-TLVs data structure and perform proper
initialization/free when the Sub-TLVs data structure is
allocated/destroyed.
Signed-off-by: Carmine Scarpitta <carmine.scarpitta@uniroma2.it>
Diffstat (limited to '')
-rw-r--r-- | isisd/isis_tlvs.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/isisd/isis_tlvs.h b/isisd/isis_tlvs.h index 1b48fd579..138e5bbea 100644 --- a/isisd/isis_tlvs.h +++ b/isisd/isis_tlvs.h @@ -639,6 +639,8 @@ enum ext_subsubtlv_types { #define EXT_AVA_BW 0x080000 #define EXT_USE_BW 0x100000 #define EXT_EXTEND_ADM_GRP 0x200000 +#define EXT_SRV6_ENDX_SID 0x400000 +#define EXT_SRV6_LAN_ENDX_SID 0x800000 /* * This structure groups all Extended IS Reachability subTLVs. @@ -688,6 +690,10 @@ struct isis_ext_subtlvs { struct isis_item_list lan_sid; struct list *aslas; + + /* SRv6 End.X & LAN End.X SID */ + struct isis_item_list srv6_endx_sid; + struct isis_item_list srv6_lan_endx_sid; }; /* RFC 8919 */ |