aboutsummaryrefslogtreecommitdiffstats
path: root/bsc-nat
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2018-01-24 21:09:15 +0100
committerHarald Welte <laforge@gnumonks.org>2018-01-24 23:05:32 +0100
commit6ed6bf97736367c3a583cfde695921ae80568e82 (patch)
treeb5d48e30aed1576d29dea9607e5e1dbd492f9e62 /bsc-nat
parentae1362544fdeb85425291871b82798e98e724e6d (diff)
MSC_Tests: Use enum instead of magic numbers for CM_SERVICE_TYPE
Diffstat (limited to 'bsc-nat')
-rw-r--r--bsc-nat/BSC_MS_ConnectionHandler.ttcn2
1 files changed, 1 insertions, 1 deletions
diff --git a/bsc-nat/BSC_MS_ConnectionHandler.ttcn b/bsc-nat/BSC_MS_ConnectionHandler.ttcn
index 6efb15b0..1f414348 100644
--- a/bsc-nat/BSC_MS_ConnectionHandler.ttcn
+++ b/bsc-nat/BSC_MS_ConnectionHandler.ttcn
@@ -58,7 +58,7 @@ const BssmapOps BSC_MS_BssmapOps := {
function f_gen_cl3(hexstring imsi) return PDU_BSSAP {
var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(imsi));
- var PDU_ML3_MS_NW l3 := valueof(ts_CM_SERV_REQ('0001'B, mi));
+ var PDU_ML3_MS_NW l3 := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
var BSSMAP_IE_CellIdentifier cell_id := valueof(ts_CellID_LAC_CI(23, 42));
var PDU_BSSAP bssap := valueof(ts_BSSMAP_ComplL3(cell_id, enc_PDU_ML3_MS_NW(l3)));
return bssap;