fixeria has uploaded this change for review. (
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/39870?usp=email )
Change subject: msc: f_establish_fully(): merge EST_TYPE_MO_{CALL,CSD}
......................................................................
msc: f_establish_fully(): merge EST_TYPE_MO_{CALL,CSD}
There's nothing special about CSD at the stage of MM connection
establishment, it looks like a normal call at this point.
Change-Id: I732b58ed43bc0d76fb78a6a41e19261658d8f755
---
M msc/BSC_ConnectionHandler.ttcn
1 file changed, 0 insertions(+), 6 deletions(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/70/39870/1
diff --git a/msc/BSC_ConnectionHandler.ttcn b/msc/BSC_ConnectionHandler.ttcn
index 4444f37..fc3522e 100644
--- a/msc/BSC_ConnectionHandler.ttcn
+++ b/msc/BSC_ConnectionHandler.ttcn
@@ -380,7 +380,6 @@
EST_TYPE_PAG_RESP,
EST_TYPE_MO_SMS,
EST_TYPE_SS_ACT,
- EST_TYPE_MO_CSD,
EST_TYPE_VGCS,
EST_TYPE_VBS
};
@@ -402,9 +401,6 @@
case (EST_TYPE_MO_CALL) {
l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
}
- case (EST_TYPE_MO_CSD) {
- l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
- }
case (EST_TYPE_EMERG_CALL) {
l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_EMERG_CALL, mi));
}
@@ -1681,8 +1677,6 @@
if (cpars.emergency) {
f_establish_fully(EST_TYPE_EMERG_CALL);
- } else if (cpars.csd) {
- f_establish_fully(EST_TYPE_MO_CSD);
} else {
f_establish_fully(EST_TYPE_MO_CALL);
}
--
To view, visit
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/39870?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.osmocom.org/settings?usp=email
Gerrit-MessageType: newchange
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I732b58ed43bc0d76fb78a6a41e19261658d8f755
Gerrit-Change-Number: 39870
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy(a)sysmocom.de>