Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-vxlan.h
1/* packet-vxlan.h
2 *
3 * Routines for Virtual eXtensible Local Area Network (VXLAN) packet dissection
4 * RFC 7348 plus draft-smith-vxlan-group-policy-01
5 *
6 * (c) Copyright 2016, Sumit Kumar Jha <[email protected]>
7 * Support for VXLAN GPE (https://www.ietf.org/id/draft-ietf-nvo3-vxlan-gpe-02.txt)
8 *
9 * Wireshark - Network traffic analyzer
10 * By Gerald Combs <[email protected]>
11 * Copyright 1998 Gerald Combs
12 *
13 * SPDX-License-Identifier: GPL-2.0-or-later
14 */
15
16#ifndef __PACKET_VXLAN_H__
17#define __PACKET_VXLAN_H__
18
19#define VXLAN_IPV4 1
20#define VXLAN_IPV6 2
21#define VXLAN_ETHERNET 3
22#define VXLAN_NSH 4
23#define VXLAN_MPLS 5
24
25#endif /* __PACKET_VXLAN_H__ */