Wireshark 4.5.0
The Wireshark network protocol analyzer
Loading...
Searching...
No Matches
packet-oran.h
1/* packet-oran.h
2 *
3 * Wireshark - Network traffic analyzer
4 * By Gerald Combs <[email protected]>
5 * Copyright 1998 Gerald Combs
6 *
7 * SPDX-License-Identifier: GPL-2.0-or-later
8 */
9
10/* Section types from Table 7.3.1-1 */
11enum section_c_types {
12 SEC_C_UNUSED_RB = 0,
13 SEC_C_NORMAL = 1,
14 SEC_C_RSVD2 = 2,
15 SEC_C_PRACH = 3,
16 SEC_C_SLOT_CONTROL = 4,
17 SEC_C_UE_SCHED = 5,
18 SEC_C_CH_INFO = 6,
19 SEC_C_LAA = 7,
20 SEC_C_ACK_NACK_FEEDBACK = 8,
21 SEC_C_SINR_REPORTING = 9,
22 SEC_C_RRM_MEAS_REPORTS = 10,
23 SEC_C_REQUEST_RRM_MEAS = 11
24};
25
26#define HIGHEST_EXTTYPE 27
27
28typedef struct oran_tap_info {
29 bool userplane;
30 uint16_t eaxc;
31 bool uplink;
32 bool section_types[SEC_C_REQUEST_RRM_MEAS];
33 bool extensions[HIGHEST_EXTTYPE+1]; /* waste first entry */
34 /* TODO: compression/bitwidth, mu/scs, slots, Section IDs, beams */
36
37/*
38 * Editor modelines - https://www.wireshark.org/tools/modelines.html
39 *
40 * Local variables:
41 * c-basic-offset: 4
42 * tab-width: 8
43 * indent-tabs-mode: nil
44 * End:
45 *
46 * vi: set shiftwidth=4 tabstop=8 expandtab:
47 * :indentSize=4:tabSize=8:noTabs=true:
48 */
Definition packet-oran.h:28