This is merely a historical archive of years 2008-2021, before the migration to mailman3.
A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/gerrit-log@lists.osmocom.org/.
neels gerrit-no-reply at lists.osmocom.orgneels has submitted this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/24409 )
Change subject: RSL_Types: add VAMOS chan rates and OSMO_TRAINING_SEQUENCE IE
......................................................................
RSL_Types: add VAMOS chan rates and OSMO_TRAINING_SEQUENCE IE
Prepare for upcoming VAMOS tests in BSC_Tests_VAMOS.ttcn.
Change-Id: Idbe9014754eff9c8b2bff19828581bae5b36fadf
---
M library/RSL_Types.ttcn
1 file changed, 15 insertions(+), 1 deletion(-)
Approvals:
Jenkins Builder: Verified
pespin: Looks good to me, but someone else must approve
fixeria: Looks good to me, approved
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn
index 6118dcf..2cbd668 100644
--- a/library/RSL_Types.ttcn
+++ b/library/RSL_Types.ttcn
@@ -220,6 +220,8 @@
RSL_IE_TFO_STATUS ('00111011'B),
RSL_IE_LLP_APDU ('00111100'B),
+ RSL_IE_OSMO_TRAINING_SEQUENCE ('01100001'B),
+
/* ip.access */
RSL_IE_IPAC_SRTP_CONFIG ('11100000'B),
RSL_IE_IPAC_PROXY_UDP ('11100001'B),
@@ -376,7 +378,9 @@
RSL_CHRT_TCH_F_GROUP ('00011000'B),
RSL_CHRT_TCH_H_GROUP ('00011001'B),
RSL_CHRT_TCH_F_BCAST ('00101000'B),
- RSL_CHRT_TCH_H_BCAST ('00101001'B)
+ RSL_CHRT_TCH_H_BCAST ('00101001'B),
+ RSL_CHRT_OSMO_TCH_F_VAMOS ('10001000'B),
+ RSL_CHRT_OSMO_TCH_H_VAMOS ('10001001'B)
} with { variant "FIELDLENGTH(8)" };
type enumerated RSL_SpeechAlgo {
RSL_CMOD_NO_RESOURCE ('00000000'B),
@@ -826,6 +830,12 @@
REL_REL_MODE_LOCAL ('01'B)
}
+ type record RSL_IE_OSMO_TrainingSequence {
+ uint8_t len,
+ uint8_t tsc_set,
+ uint8_t tsc
+ } with { variant (len) "LENGTHTO(tsc_set,tsc)" }
+
/* union of all IE bodies */
type union RSL_IE_Body {
RslChannelNr chan_nr,
@@ -878,6 +888,8 @@
RSL_IE_IPA_ConnectionStats ipa_stats,
RSL_IE_IPA_SpeechMode ipa_speech_mode,
+ RSL_IE_OSMO_TrainingSequence osmo_training_sequence,
+
RSL_LV other
}
@@ -937,6 +949,8 @@
ipa_stats, iei = RSL_IE_IPAC_CONN_STAT;
ipa_speech_mode, iei = RSL_IE_IPAC_SPEECH_MODE;
+ osmo_training_sequence, iei = RSL_IE_OSMO_TRAINING_SEQUENCE;
+
other, OTHERWISE;
)" };
--
To view, visit https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/24409
To unsubscribe, or for help writing mail filters, visit https://gerrit.osmocom.org/settings
Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: Idbe9014754eff9c8b2bff19828581bae5b36fadf
Gerrit-Change-Number: 24409
Gerrit-PatchSet: 1
Gerrit-Owner: neels <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: fixeria <vyanitskiy at sysmocom.de>
Gerrit-Reviewer: neels <nhofmeyr at sysmocom.de>
Gerrit-Reviewer: pespin <pespin at sysmocom.de>
Gerrit-MessageType: merged
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.osmocom.org/pipermail/gerrit-log/attachments/20210527/35792a33/attachment.htm>