aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Couzens <lynxis@fe80.eu>2019-05-09 16:06:14 +0200
committerlynxis lazus <lynxis@fe80.eu>2019-05-10 23:23:52 +0000
commitc43c8cd275b4f71b0bc6a50fc81564c812d5b406 (patch)
tree6ae9a9c0a597b6c5f250ba6b2a9833b47bfcd6ed
parent1b85bf3a3dd699d66af8684c2f696cafa3f8c4f7 (diff)
Revert partial of 0ac6315212a3 ("msc: add inter-BSC and inter-MSC Handover tests")
Commit 0ac6315212a breaks all related GSUP SS tests because it require all GSUP SS packages to have a OSMO_GSUP_MESSAGE_CLASS_USSD IE. Change-Id: Iadbc37105fa67cf6383fb63b86ed653ccc7bddf7
-rw-r--r--library/GSUP_Types.ttcn6
1 files changed, 0 insertions, 6 deletions
diff --git a/library/GSUP_Types.ttcn b/library/GSUP_Types.ttcn
index 73f45626..7e26e19f 100644
--- a/library/GSUP_Types.ttcn
+++ b/library/GSUP_Types.ttcn
@@ -1091,20 +1091,14 @@ private function f_gen_tr_ss_ies(
tr_GSUP_IE_SessionId(sid),
tr_GSUP_IE_SessionState(state)
};
- var integer last_idx := 3;
/* Optional SS payload */
if (istemplatekind(ss, "*")) {
ies[3] := *;
- last_idx := last_idx + 1;
} else if (not istemplatekind(ss, "omit")) {
ies[3] := tr_GSUP_IE_SSInfo(ss);
- last_idx := last_idx + 1;
}
- ies[last_idx] := tr_GSUP_IE_Message_Class(OSMO_GSUP_MESSAGE_CLASS_USSD);
- last_idx := last_idx + 1;
-
return ies;
}