MSC_ConnectionHandler: fix f_rsl_reply() for RSL_MT_ENCR_CMD

For some weird reason the link_id is *not* the second IE in
RSL_MT_ENCR_CMD, while it is in all other RSL RLL or DCHAN messages.

Change-Id: Iea93aa8dba74d25c74a257d011ba43308ee375e4
This commit is contained in:
Harald Welte 2017-12-23 02:28:34 +01:00
parent 4532e0a145
commit 1a40de6a7f
1 changed files with 1 additions and 1 deletions

View File

@ -95,7 +95,7 @@ function f_create_chan_and_exp(TestHdlrParams pars) runs on MSC_ConnHdlr {
function f_rsl_reply(template PDU_ML3_MS_NW l3, RSL_Message orig) runs on MSC_ConnHdlr {
var RslChannelNr chan_nr := orig.ies[0].body.chan_nr;
var RslLinkId link_id := orig.ies[1].body.link_id;
var RslLinkId link_id;
if (orig.msg_type == RSL_MT_ENCR_CMD) {
link_id := orig.ies[2].body.link_id;
} else {