From c54b8f99c15221428d1d08e2f88075842c58380d Mon Sep 17 00:00:00 2001 From: Carmine Scarpitta Date: Fri, 24 Feb 2023 22:37:18 +0100 Subject: [PATCH] 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 --- isisd/isis_tlvs.h | 4 ++++ 1 file changed, 4 insertions(+) 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, -- 2.39.5