Wireshark 4.5.0
The Wireshark network protocol analyzer
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
packet-sbas_l1.h
1/* packet-sbas_l1.h
2 * SBAS L1 protocol dissection.
3 *
4 * By Timo Warns <timo.warns@gmail.com>
5 * Copyright 2024 Timo Warns
6 *
7 * Wireshark - Network traffic analyzer
8 * By Gerald Combs <gerald@unicom.net>
9 * Copyright 1998 Gerald Combs
10 *
11 * SPDX-License-Identifier: GPL-2.0-or-later
12 */
13
14#ifndef PACKET_SBAS_L1_h
15#define PACKET_SBAS_L1_h
16
17#include <stdint.h>
18
19// UDREI_i mapping
20// see ICAO Annex 10, Vol I, 8th edition, Table B-67
21extern const value_string UDREI_EVALUATION[];
22
23extern uint32_t sbas_crc24q(const uint8_t *data);
24
25extern const char *EMS_L1_SVC_FLAG;
26
27#endif
Definition value_string.h:25