Attention is currently required from: neels.
fixeria has posted comments on this change. ( https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36456?usp=email )
Change subject: msc: f_expect_paging(): better detect failure ......................................................................
Patch Set 1: Code-Review+1
(1 comment)
File msc/BSC_ConnectionHandler.ttcn:
https://gerrit.osmocom.org/c/osmo-ttcn3-hacks/+/36456/comment/1adc53a1_a0cb0... PS1, Line 1366: if (g_pars.ran_is_geran) { Hm, this could be a single `alt`-statement:
``` alt { [g_pars.ran_is_geran] BSSAP.receive ... [g_pars.ran_is_geran] BSSAP.receive ... [not g_pars.ran_is_geran] BSSAP.receive ... [not g_pars.ran_is_geran] BSSAP.receive ... } ```
... ideally with a timer. Just an idea.