diff options
| author | Carmine Scarpitta <carmine.scarpitta@uniroma2.it> | 2023-02-24 22:37:18 +0100 |
|---|---|---|
| committer | Carmine Scarpitta <carmine.scarpitta@uniroma2.it> | 2023-09-11 22:11:26 +0200 |
| commit | c54b8f99c15221428d1d08e2f88075842c58380d (patch) | |
| tree | 22df6108f29503f0d4bb16f4640115c467643fa9 | |
| parent | 0afeda742c02b0aa239a48f120721142beee2ba7 (diff) | |
isisd: Add struct to store Sub-Sub-TLVs info
Add a data structure to store IS-IS Sub-Sub-TLVs information. At this
time, does not contain any Sub-Sub-TLV information because no
Sub-Sub-TLVs have been defined yet. This data structure will be extended
in future commits to store specific Sub-Sub-TLVs, as they become
supported.
Signed-off-by: Carmine Scarpitta <carmine.scarpitta@uniroma2.it>
| -rw-r--r-- | isisd/isis_tlvs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/isisd/isis_tlvs.h b/isisd/isis_tlvs.h index 11f4f3fad7..501d2c4511 100644 --- a/isisd/isis_tlvs.h +++ b/isisd/isis_tlvs.h @@ -393,6 +393,10 @@ struct isis_subtlvs { struct isis_item_list srv6_end_sids; }; +struct isis_subsubtlvs { + enum isis_tlv_context context; +}; + enum isis_tlv_type { /* TLVs code point */ ISIS_TLV_AREA_ADDRESSES = 1, |
