library/RSL_Types: add missing RSL_IE_OSMO_REP_ACCH_CAP

Change-Id: I198cbfd176e41c55f67d625d9587ba5b6062f0c4
Related: SYS#5114
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn
index aa206a3..3ac40ce 100644
--- a/library/RSL_Types.ttcn
+++ b/library/RSL_Types.ttcn
@@ -220,6 +220,7 @@
 		RSL_IE_TFO_STATUS		('00111011'B),
 		RSL_IE_LLP_APDU			('00111100'B),
 
+		RSL_IE_OSMO_REP_ACCH_CAP	('01100000'B),
 		RSL_IE_OSMO_TRAINING_SEQUENCE	('01100001'B),
 
 		/* ip.access */
@@ -873,6 +874,16 @@
 		uint8_t			tsc
 	} with { variant (len) "LENGTHTO(tsc_set,tsc)" }
 
+	type record RSL_IE_OSMO_RepAcchCap {
+		uint8_t			len,
+		BIT1			rfu ('0'B),
+		uint3_t			rxqual,
+		boolean			ul_sacch,
+		boolean			dl_sacch,
+		boolean			dl_facch_all,
+		boolean			dl_facch_cmd
+	} with { variant (len) "LENGTHTO(rfu,rxqual,ul_sacch,dl_sacch,dl_facch_all,dl_facch_cmd)" }
+
 	/* union of all IE bodies */
 	type union RSL_IE_Body {
 		RslChannelNr		chan_nr,
@@ -927,6 +938,7 @@
 		RSL_IE_IPA_SpeechMode	ipa_speech_mode,
 
 		RSL_IE_OSMO_TrainingSequence osmo_training_sequence,
+		RSL_IE_OSMO_RepAcchCap	rep_acch_cap,
 
 		RSL_LV		other
 	}
@@ -989,6 +1001,7 @@
 					ipa_speech_mode, iei = RSL_IE_IPAC_SPEECH_MODE;
 
 					osmo_training_sequence, iei = RSL_IE_OSMO_TRAINING_SEQUENCE;
+					rep_acch_cap, iei = RSL_IE_OSMO_REP_ACCH_CAP;
 
 					other, OTHERWISE;
 		)" };