diff options
author | Vadim Yanitskiy <axilirator@gmail.com> | 2018-09-30 01:30:14 +0700 |
---|---|---|
committer | Vadim Yanitskiy <axilirator@gmail.com> | 2018-10-03 18:44:10 +0700 |
commit | c7f6b1c53426c1d57221eaa7ce371ba5e42f507e (patch) | |
tree | 531b86c0f24e78c93e9760af985c5022d675f6e8 /src/host/layer23/src/mobile/gsm48_cc.c | |
parent | e0fd31628480af13b3254d403ceb0e0309acbad3 (diff) |
(WIP) mobile: add RTP related primitivesfixeria/mncc
Change-Id: I61c058eb1c6a5d2a8acc295367eea51391ec6640
Diffstat (limited to 'src/host/layer23/src/mobile/gsm48_cc.c')
-rw-r--r-- | src/host/layer23/src/mobile/gsm48_cc.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/host/layer23/src/mobile/gsm48_cc.c b/src/host/layer23/src/mobile/gsm48_cc.c index 1d37ebea..92c13863 100644 --- a/src/host/layer23/src/mobile/gsm48_cc.c +++ b/src/host/layer23/src/mobile/gsm48_cc.c @@ -1975,6 +1975,12 @@ int mncc_tx_to_cc(void *inst, int msg_type, void *arg) case GSM_TCH_FRAME_AMR: return gsm_send_voice_mncc(ms, arg); + /* RTP management */ + case MNCC_RTP_CREATE: + case MNCC_RTP_CONNECT: + case MNCC_RTP_FREE: + return 0; + /* Intentionally ignored messages */ case MNCC_LCHAN_MODIFY: case MNCC_FRAME_RECV: |