blob: af4562dd99f6dfd439f69bbf0fbe3a2993a1be31 [file] [log] [blame]
Harald Weltef5d6fee2016-01-13 22:29:10 +01001#pragma once
2
3#include <stdint.h>
4
5enum diag_umts_rrc_chtype {
6 DIAG_UMTS_RRC_CHT_UL_CCCH = 0,
7 DIAG_UMTS_RRC_CHT_DL_DCCH = 1,
8 DIAG_UMTS_RRC_CHT_DL_CCCH = 2,
9 DIAG_UMTS_RRC_CHT_DL_BCCH = 3,
10 DIAG_UMTS_RRC_CHT_DL_BCCH_BCH = 4,
11 DIAG_UMTS_RRC_CHT_DL_BCCH_FACH = 5,
12 DIAG_UMTS_RRC_CHT_DL_PCCH = 6,
13};
14
15/* LOG_WCDMA_SIGNALING_MSG_C */
16struct diag_umts_rrc_msg {
17 uint8_t chan_type;
18 uint8_t rb_id;
19 uint16_t length;
20 uint8_t msg[0];
21} __attribute__((packed));
22