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>
This commit is contained in:
Carmine Scarpitta 2023-02-24 22:37:18 +01:00
parent 0afeda742c
commit c54b8f99c1

View File

@ -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,