Wireshark
4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
epan
dissectors
packet-nsh.h
1
/* packet-nsh.h
2
*
3
* Routines for Network Service Header
4
* draft-ietf-sfc-nsh-01
5
*
6
* Wireshark - Network traffic analyzer
7
* By Gerald Combs <
[email protected]
>
8
* Copyright 1998 Gerald Combs
9
*
10
* SPDX-License-Identifier: GPL-2.0-or-later
11
*/
12
13
#ifndef __PACKET_NSH_H__
14
#define __PACKET_NSH_H__
15
16
/*Network Service Header (NSH) Next Protocol field values */
17
18
#define NSH_NONE 0
19
#define NSH_IPV4 1
20
#define NSH_IPV6 2
21
#define NSH_ETHERNET 3
22
#define NSH_NSH 4
23
#define NSH_MPLS 5
24
#define NSH_EXPERIMENT_1 254
25
#define NSH_EXPERIMENT_2 255
26
27
// Alias for last "actual" known protocol
28
#define NSH_MAX_PROTOCOL NSH_MPLS
29
30
#endif
/* __PACKET_NSH_H__ */
Generated by
1.9.8