jolly has uploaded this change for review.

View Change

Add codec list to *VGCS_VBS_AssignmentReq templates

AoIP, call ID and codec list must be included, if user plane is IP
based.

Change-Id: Id3ce78ad795c418650ca924a953294c3380b8198
---
M library/BSSMAP_Templates.ttcn
1 file changed, 18 insertions(+), 4 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/46/33146/1
diff --git a/library/BSSMAP_Templates.ttcn b/library/BSSMAP_Templates.ttcn
index bb395ae..0670ce2 100644
--- a/library/BSSMAP_Templates.ttcn
+++ b/library/BSSMAP_Templates.ttcn
@@ -2259,7 +2259,8 @@
template (value) GroupCallRef group_call_ref,
template (omit) BSSMAP_IE_CircuitIdentityCode cic := omit,
template (omit) BSSMAP_IE_AoIP_TransportLayerAddress aoip := omit,
- template (omit) OCT4 call_id := omit)
+ template (omit) OCT4 call_id := omit,
+ template (omit) BSSMAP_IE_SpeechCodecList codecList := omit)
modifies ts_BSSAP_BSSMAP := {
pdu := {
bssmap := {
@@ -2278,7 +2279,7 @@
cellIdentifierListSegment := omit,
aoIPTransportLayer := aoip,
callIdentifier := ts_BSSMAP_IE_CallIdentifier(call_id),
- codecList := omit
+ codecList := codecList
}
}
}
@@ -2290,7 +2291,8 @@
template (present) GroupCallRef group_call_ref,
template BSSMAP_IE_CircuitIdentityCode cic := *,
template BSSMAP_IE_AoIP_TransportLayerAddress aoip := ?,
- template OCT4 call_id := ?)
+ template OCT4 call_id := ?,
+ template BSSMAP_IE_SpeechCodecList codecList := ?)
modifies tr_BSSAP_BSSMAP := {
pdu := {
bssmap := {
@@ -2309,7 +2311,7 @@
cellIdentifierListSegment := omit,
aoIPTransportLayer := aoip,
callIdentifier := tr_BSSMAP_IE_CallIdentifier(call_id),
- codecList := omit
+ codecList := codecList
}
}
}

To view, visit change 33146. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Id3ce78ad795c418650ca924a953294c3380b8198
Gerrit-Change-Number: 33146
Gerrit-PatchSet: 1
Gerrit-Owner: jolly <andreas@eversberg.eu>
Gerrit-MessageType: newchange