Wireshark 4.7.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-geneve.h
1/* packet-geneve.h
2 * Routines for Geneve - Generic Network Virtualization Encapsulation
3 *
4 * Wireshark - Network traffic analyzer
5 * By Gerald Combs <[email protected]>
6 * Copyright 1998 Gerald Combs
7 *
8 * SPDX-License-Identifier: GPL-2.0-or-later
9 */
10
11
12#ifndef __PACKET_GENEVE_H__
13#define __PACKET_GENEVE_H__
14
15/* This is used by custom dissectors and should be in the "install" target */
16/* PUBLIC_HEADER */
17
18typedef struct geneve_option
19{
20 uint16_t opt_class;
21 uint8_t opt_type;
22 uint8_t opt_len;
23 char *critical;
24 uint8_t flags;
26
27#endif /* __PACKET_GENEVE_H__ */
28
29/*
30 * Editor modelines - https://www.wireshark.org/tools/modelines.html
31 *
32 * Local variables:
33 * c-basic-offset: 4
34 * tab-width: 8
35 * indent-tabs-mode: nil
36 * End:
37 *
38 * vi: set shiftwidth=4 tabstop=8 expandtab:
39 * :indentSize=4:tabSize=8:noTabs=true:
40 */
Definition packet-geneve.h:19