NSH: Add NSH Next Protocol value None

Closes #17404
This commit is contained in:
Jaap Keuter 2021-08-05 13:56:35 +02:00
parent 7a584511f1
commit 02adaa1385
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ void proto_reg_handoff_nsh(void);
void proto_register_nsh(void);
static const value_string nsh_next_protocols[] = {
{ NSH_NONE, "None" },
{ NSH_IPV4, "IPv4" },
{ NSH_IPV6, "IPv6" },
{ NSH_ETHERNET, "Ethernet" },

View File

@ -15,6 +15,7 @@
/*Network Service Header (NSH) Next Protocol field values */
#define NSH_NONE 0
#define NSH_IPV4 1
#define NSH_IPV6 2
#define NSH_ETHERNET 3