summaryrefslogtreecommitdiffstats
path: root/isisd/isis_tlvs.h
diff options
context:
space:
mode:
authorCarmine Scarpitta <carmine.scarpitta@uniroma2.it>2023-06-03 02:22:02 +0200
committerCarmine Scarpitta <carmine.scarpitta@uniroma2.it>2023-09-11 22:11:46 +0200
commitdf121f68e7a8b943c3bcc36c632fcd5116b8aad8 (patch)
tree790cedd2c26ac33b6e9087cecf08fd2882fb934b /isisd/isis_tlvs.h
parentisisd: Unpack SRv6 (LAN) End.X SID Sub-TLV (diff)
downloadfrr-df121f68e7a8b943c3bcc36c632fcd5116b8aad8.tar.xz
frr-df121f68e7a8b943c3bcc36c632fcd5116b8aad8.zip
isisd: Make MTYPE_ISIS_SUBSUBTLV non-static
We need to allocate memory SRv6 SID Structure Sub-Sub-TLV in isis_srv6.c. MTYPE_ISIS_SUBSUBTLV is statically defined in isis_tlvs.c and therefore is not visible in isis_srv6.c. Let's make MTYPE_ISIS_SUBSUBTLV non-static to provide visibility to the external world.. Signed-off-by: Carmine Scarpitta <carmine.scarpitta@uniroma2.it>
Diffstat (limited to '')
-rw-r--r--isisd/isis_tlvs.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/isisd/isis_tlvs.h b/isisd/isis_tlvs.h
index 825610ed3..fee0b5a36 100644
--- a/isisd/isis_tlvs.h
+++ b/isisd/isis_tlvs.h
@@ -22,6 +22,7 @@
#include "lib/srv6.h"
DECLARE_MTYPE(ISIS_SUBTLV);
+DECLARE_MTYPE(ISIS_SUBSUBTLV);
struct lspdb_head;
struct sr_prefix_cfg;