From 06f0949316ac0b80839da93d982a1a4bf6e8b096 Mon Sep 17 00:00:00 2001 From: Harald Welte Date: Wed, 21 Oct 2020 00:06:29 +0200 Subject: [PATCH] RSPRO_Server: Ignore any ID RESP messages from the client for now More recent clients start to send ID RESP, which was not the case at the time the TTCN3 test suite was written. As we don't really want to test the IPA CCM behavior, but we want to test the actual remsim functionality, we can simply ignore any such responses. Change-Id: Id557ea9c540bf96465e7f18da87719888dd7a318 --- remsim/RSPRO_Server.ttcn | 1 + 1 file changed, 1 insertion(+) diff --git a/remsim/RSPRO_Server.ttcn b/remsim/RSPRO_Server.ttcn index 635629fb8..bb11689de 100644 --- a/remsim/RSPRO_Server.ttcn +++ b/remsim/RSPRO_Server.ttcn @@ -46,6 +46,7 @@ private altstep as_rspro_srv_Tguard() runs on rspro_server_CT { altstep as_ignore_id_ack(integer i) runs on rspro_server_CT { [] RSPRO_SRV[i].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) { repeat; } + [] RSPRO_SRV[i].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_RESP)) { repeat; } }