fixeria has uploaded this change for review. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/28919 )
Change subject: BSSMAP_Templates: add SpeechCodecList param to tr_BSSMAP_HandoverRequest ......................................................................
BSSMAP_Templates: add SpeechCodecList param to tr_BSSMAP_HandoverRequest
Change-Id: Ia5ce0c03fd4198e26068ddd1f18f2e17b1ae533d Related: OS#5529 --- M library/BSSMAP_Templates.ttcn 1 file changed, 3 insertions(+), 1 deletion(-)
git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/19/28919/1
diff --git a/library/BSSMAP_Templates.ttcn b/library/BSSMAP_Templates.ttcn index 87099b6..633b060 100644 --- a/library/BSSMAP_Templates.ttcn +++ b/library/BSSMAP_Templates.ttcn @@ -973,7 +973,8 @@
template PDU_BSSAP tr_BSSMAP_HandoverRequest(template BSSMAP_IE_EncryptionInformation encryptionInformation := *, template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm := *, - template BSSMAP_IE_KC128 kC128 := * + template BSSMAP_IE_KC128 kC128 := *, + template BSSMAP_IE_SpeechCodecList codecList := * ) modifies tr_BSSAP_BSSMAP := { pdu := { @@ -982,6 +983,7 @@ messageType := '10'O, encryptionInformation := encryptionInformation, chosenEncryptionAlgorithm := chosenEncryptionAlgorithm, + codecList := codecList, kC128 := kC128 } }