bsc: fix some inadequate template restriction warnings

Change-Id: Icfc69aff2c923f4e12dbd6cc42c792d5712a7b27
This commit is contained in:
Vadim Yanitskiy 2022-03-16 20:26:35 +03:00 committed by fixeria
parent bedb1fd1e2
commit 35c9a33418
2 changed files with 8 additions and 8 deletions

View File

@ -1677,8 +1677,8 @@ function f_gen_handover_req(integer bssap_idx := 0, charstring aoip_tla := "1.2.
var BSSMAP_IE_EncryptionInformation encryptionInformation :=
valueof(ts_BSSMAP_IE_EncrInfo('0000000000000000'O,'01'O));
var template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm := omit;
var template BSSMAP_IE_KC128 kc128 := omit;
var template (omit) BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm := omit;
var template (omit) BSSMAP_IE_KC128 kc128 := omit;
if (ispresent(enc)) {
var TestHdlrEncrParams v_enc := valueof(enc);
encryptionInformation := valueof(ts_BSSMAP_IE_EncrInfo(v_enc.enc_key, v_enc.enc_alg_permitted));
@ -2492,15 +2492,15 @@ testcase TC_tch_dlci_link_id_sapi() runs on test_CT {
}
private function f_exp_sapi_n_reject(template (present) GsmSapi sapi := ?,
template myBSSMAP_Cause cause := ?,
template (present) myBSSMAP_Cause cause := ?,
template (present) BIT2 cc := ?,
float T_val := 2.0)
runs on test_CT {
var BSSAP_N_DATA_ind rx_di;
timer T;
var template BSSMAP_IE_Cause tr_cause := tr_BSSMAP_IE_Cause(cause);
var template PDU_BSSAP tr_pdu := tr_BSSMAP_SAPInReject(sapi);
var template (present) BSSMAP_IE_Cause tr_cause := tr_BSSMAP_IE_Cause(cause);
var template (present) PDU_BSSAP tr_pdu := tr_BSSMAP_SAPInReject(sapi);
T.start(T_val);
alt {
@ -8010,7 +8010,7 @@ testcase TC_c0_power_red_mode() runs on test_CT {
f_vty_transceive(BSCVTY, "bts 0 c0-power-reduction " & int2str(red));
/* Expect Osmocom specific BS Power Control message on the RSL */
var template RSL_Message tr_rsl_pdu := tr_RSL_BS_PWR_CTRL(
var template (present) RSL_Message tr_rsl_pdu := tr_RSL_BS_PWR_CTRL(
chan_nr := t_RslChanNr_BCCH(0),
bs_power := tr_RSL_IE_BS_Power(red / 2));
tr_rsl_pdu.msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false);
@ -10517,7 +10517,7 @@ private function f_vty_set_imm_ass(TELNETasp_PT pt, BtsNr bts_nr := 0, charstrin
}
private function f_verify_imm_ass(RSL_Message imm_ass, template uint8_t ra := ?, template GsmFrameNumber fn := ?,
template RslChannelNr chan_nr := ?,
template (present) RslChannelNr chan_nr := ?,
template (present) uint12_t arfcn := ?,
template (present) uint3_t tsc := ?)
{

View File

@ -622,7 +622,7 @@ function f_encr_params(OCT1 alg_permitted, OCT1 alg_expect := '00'O, template (o
/* In this case, alg_permitted should have only one permitted algo */
alg_expect := valueof(alg_permitted);
}
var template octetstring kc := omit;
var template (omit) octetstring kc := omit;
if (kc128) {
kc := f_rnd_octstring(16);
}