aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocom
diff options
context:
space:
mode:
authorVadim Yanitskiy <axilirator@gmail.com>2018-11-29 01:20:58 +0700
committerVadim Yanitskiy <axilirator@gmail.com>2019-02-13 12:50:14 +0000
commitf20c6b7bd5200ed09d1563a1e61a5b62b033eeff (patch)
treeeed7ddaba870735ce4cbdd0a478d1f20416be72e /include/osmocom
parent896950ab82729e7ef5b57057aff797519d603b7f (diff)
libmsc/gsm_04_80.c: use gsm0480_create_release_complete()
The previous implementation of msc_send_ussd_release_complete() was based on gsm0480_create_ussd_release_complete(), that doesn't allow to specify GSM 04.07 transaction identifier. The ability to specify particular transaction identifier is required for handling multiple SS/USSD transactions. Change-Id: Id2975c3383f18e83124ba38927c03980d67ddadb Depends Change-Id: (libosmocore) Ie3ac85fcef90a5e532334ba3482804d5305c88d7
Diffstat (limited to 'include/osmocom')
-rw-r--r--include/osmocom/msc/gsm_04_80.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/include/osmocom/msc/gsm_04_80.h b/include/osmocom/msc/gsm_04_80.h
index 29b800bad..073794b06 100644
--- a/include/osmocom/msc/gsm_04_80.h
+++ b/include/osmocom/msc/gsm_04_80.h
@@ -10,4 +10,5 @@ int msc_send_ussd_reject(struct ran_conn *conn,
int msc_send_ussd_notify(struct ran_conn *conn, int level,
const char *text);
-int msc_send_ussd_release_complete(struct ran_conn *conn);
+int msc_send_ussd_release_complete(struct ran_conn *conn,
+ uint8_t transaction_id);