fixeria has uploaded this change for review.

View Change

library/DIAMETER_Emulation: f_diameter_xceive(): ignore unexpected PDUs

Currently an unexpected PDU will trigger a DTE (no matching alt).

Change-Id: I6dbc646d5f036f454f197137373796f40c4c9e74
Related: SYS#5602
---
M library/DIAMETER_Emulation.ttcn
1 file changed, 1 insertion(+), 0 deletions(-)

git pull ssh://gerrit.osmocom.org:29418/osmo-ttcn3-hacks refs/changes/91/31291/1
diff --git a/library/DIAMETER_Emulation.ttcn b/library/DIAMETER_Emulation.ttcn
index 09f92be..3fa6a5c 100644
--- a/library/DIAMETER_Emulation.ttcn
+++ b/library/DIAMETER_Emulation.ttcn
@@ -260,6 +260,7 @@
DIAMETER.send(t_DIAMETER_Send(g_diameter_conn_id, tx));
alt {
[] DIAMETER.receive(tr_DIAMETER_RecvFrom_R(rx_t)) -> value mrf { }
+ [] DIAMETER.receive(tr_DIAMETER_RecvFrom_R(?)) { repeat; }
[] DIAMETER.receive(tr_SctpAssocChange) { repeat; }
[] DIAMETER.receive(tr_SctpPeerAddrChange) { repeat; }
[] T.timeout {

To view, visit change 31291. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: osmo-ttcn3-hacks
Gerrit-Branch: master
Gerrit-Change-Id: I6dbc646d5f036f454f197137373796f40c4c9e74
Gerrit-Change-Number: 31291
Gerrit-PatchSet: 1
Gerrit-Owner: fixeria <vyanitskiy@sysmocom.de>
Gerrit-MessageType: newchange