dexter has uploaded this change for review.

View Change

PCUIF_Types: fix record PCUIF_data_cnf

The msg_id in record record PCUIF_data_cnf lacks the variant
BYTEORDER(last), (which we use in record PCUIF_agch and record
PCUIF_pch). This causes the msg_id to be sent back in the wrong
endieness format.

Related: OS#5927
Change-Id: I69c1ccc37dac1e06ebe29484c767014954ff55e2
---
M library/PCUIF_Types.ttcn
1 file changed, 18 insertions(+), 1 deletion(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/04/34504/1
diff --git a/library/PCUIF_Types.ttcn b/library/PCUIF_Types.ttcn
index b6a1bfa..6be45df 100644
--- a/library/PCUIF_Types.ttcn
+++ b/library/PCUIF_Types.ttcn
@@ -111,7 +111,9 @@
type record PCUIF_data_cnf {
PCUIF_Sapi sapi,
OCT4 msg_id
-} with { variant "" };
+} with {
+ variant (msg_id) "BYTEORDER(last)"
+};

type record PCUIF_rts_req {
PCUIF_Sapi sapi,

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

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I69c1ccc37dac1e06ebe29484c767014954ff55e2
Gerrit-Change-Number: 34504
Gerrit-PatchSet: 1
Gerrit-Owner: dexter <pmaier@sysmocom.de>
Gerrit-MessageType: newchange