Attention is currently required from: daniel, lynxis lazus, pespin.
Patch set 1:Code-Review +2
2 comments:
File mme/MME_Tests.ttcn:
Patch Set #1, Line 405: c_NAS_TSC_NATIVE_SEC_CTX
It's the default param value, but I prefer keeping it here so it explicitly shows what we are using […]
Then there's a little sense in using the template here, you could do:
```
kset_id := { '000'B, c_NAS_TSC_NATIVE_SEC_CTX }
```
or even more explicit:
```
kset_id := { identifier := '000'B,
tSC := c_NAS_TSC_NATIVE_SEC_CTX }
```
but this is all cosmetics and I am not blocking here.
Patch Set #1, Line 405: '000'B
'000'B, guess what, means 0, which is basically one of the 2^3-1 you can select to start with, and w […]
Ok, I just thought it might be a special kind of value like '111'B.
To view, visit change 39841. To unsubscribe, or for help writing mail filters, visit settings.