summaryrefslogtreecommitdiffstats
path: root/src/host/layer23/include/osmocom/bb/mobile/mncc.h
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-09-30 01:30:14 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2018-10-03 18:44:10 +0700
commitc7f6b1c53426c1d57221eaa7ce371ba5e42f507e (patch)
tree531b86c0f24e78c93e9760af985c5022d675f6e8 /src/host/layer23/include/osmocom/bb/mobile/mncc.h
parente0fd31628480af13b3254d403ceb0e0309acbad3 (diff)
(WIP) mobile: add RTP related primitivesfixeria/mncc
Diffstat (limited to 'src/host/layer23/include/osmocom/bb/mobile/mncc.h')
-rw-r--r--src/host/layer23/include/osmocom/bb/mobile/mncc.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/host/layer23/include/osmocom/bb/mobile/mncc.h b/src/host/layer23/include/osmocom/bb/mobile/mncc.h
index 91e6ff9d..f3579840 100644
--- a/src/host/layer23/include/osmocom/bb/mobile/mncc.h
+++ b/src/host/layer23/include/osmocom/bb/mobile/mncc.h
@@ -108,6 +108,10 @@ struct gsm_call {
#define MNCC_FRAME_DROP 0x0202
#define MNCC_LCHAN_MODIFY 0x0203
+#define MNCC_RTP_CREATE 0x0204
+#define MNCC_RTP_CONNECT 0x0205
+#define MNCC_RTP_FREE 0x0206
+
#define GSM_TCHF_FRAME 0x0300
#define GSM_TCHF_FRAME_EFR 0x0301
#define GSM_TCHH_FRAME 0x0302
@@ -177,6 +181,15 @@ struct gsm_data_frame {
unsigned char data[0];
};
+struct gsm_mncc_rtp {
+ uint32_t msg_type;
+ uint32_t callref;
+ uint32_t ip;
+ uint16_t port;
+ uint32_t payload_type;
+ uint32_t payload_msg_type;
+};
+
struct gsm_mncc_hello {
uint32_t msg_type;
uint32_t version;