Attention is currently required from: neels.
Patch set 1:Code-Review +1
1 comment:
File msc/BSC_ConnectionHandler.ttcn:
Patch Set #1, 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.
To view, visit change 36456. To unsubscribe, or for help writing mail filters, visit settings.