aboutsummaryrefslogtreecommitdiffstats
path: root/libosmocore/include/osmocore/protocol/gsm_04_11.h
diff options
context:
space:
mode:
Diffstat (limited to 'libosmocore/include/osmocore/protocol/gsm_04_11.h')
-rw-r--r--libosmocore/include/osmocore/protocol/gsm_04_11.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/libosmocore/include/osmocore/protocol/gsm_04_11.h b/libosmocore/include/osmocore/protocol/gsm_04_11.h
index 9fce0d74f..c6a2b1930 100644
--- a/libosmocore/include/osmocore/protocol/gsm_04_11.h
+++ b/libosmocore/include/osmocore/protocol/gsm_04_11.h
@@ -1,6 +1,8 @@
#ifndef PROTO_GSM_04_11_H
#define PROTO_GSM_04_11_H
+#include <stdint.h>
+
/* GSM TS 04.11 definitions */
/* Chapter 5.2.3: SMC-CS states at the network side */
@@ -97,10 +99,10 @@ enum gsm411_rp_cause {
/* Chapter 8.2.1 */
struct gsm411_rp_hdr {
- u_int8_t len;
- u_int8_t msg_type;
- u_int8_t msg_ref;
- u_int8_t data[0];
+ uint8_t len;
+ uint8_t msg_type;
+ uint8_t msg_ref;
+ uint8_t data[0];
} __attribute__ ((packed));
/* our own enum, not related to on-air protocol */