Wireshark 4.7.3
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-dect-nr.h
1/* packet-dect-nr.h
2 *
3 * Copyright 2025, Stig Bjørlykke <[email protected]>
4 *
5 * Wireshark - Network traffic analyzer
6 * By Gerald Combs <[email protected]>
7 * Copyright 1998 Gerald Combs
8 *
9 * SPDX-License-Identifier: GPL-2.0-or-later
10 */
11
12#ifndef __PACKET_DECT_NR_H__
13#define __PACKET_DECT_NR_H__
14
15typedef enum {
16 DECT_NR_PHF_TYPE_AUTO,
17 DECT_NR_PHF_TYPE_1,
18 DECT_NR_PHF_TYPE_2,
19} dect_nr_phf_type_t;
20
21typedef struct _dect_nr_info_t {
22 dect_nr_phf_type_t phf_type;
23} dect_nr_info_t;
24
25#endif /* __PACKET_DECT_NR_H__ */
Definition packet-dect-nr.h:21