library/RSL_Types.ttcn: expect any l3_info for 'tr_RSL_UNITDATA_*' by default

This is quite useful when one needs to expect an RSL UNITDATA
message with any payload. Let's set 'l3_info' to '?' by default,
like it's already done for 'ts_RSL_DATA_*'.

Change-Id: I45260343b34d8d054e7efa72de11dd4cb510a8cc
diff --git a/library/RSL_Types.ttcn b/library/RSL_Types.ttcn
index 5afabe1..cd4ba58 100644
--- a/library/RSL_Types.ttcn
+++ b/library/RSL_Types.ttcn
@@ -1062,7 +1062,7 @@
 	}
 	template RSL_Message tr_RSL_UNITDATA_REQ(template RslChannelNr chan_nr,
 						 template RslLinkId link_id,
-						 template octetstring l3_info)
+						 template octetstring l3_info := ?)
 	modifies tr_RSL_DATA_REQ := {
 		msg_type := RSL_MT_UNIT_DATA_REQ
 	}
@@ -1077,7 +1077,7 @@
 	}
 	template RSL_Message tr_RSL_UNITDATA_IND(template RslChannelNr chan_nr,
 						 template RslLinkId link_id,
-						 template octetstring l3_info)
+						 template octetstring l3_info := ?)
 	modifies tr_RSL_DATA_IND := {
 		msg_type := RSL_MT_UNIT_DATA_IND
 	}