Comment # 2
on bug 6112
from Anders Broman
The code is generated from TCAP-Remote-Operations-Information-Objects {iso(1)
memberbody(2) usa(840) t1-114(10013) modules(0) informationObjects(1)
version4(4) }
:
ErrorCode ::= CHOICE {
national [PRIVATE 19] INTEGER (-128..127),
private [PRIVATE 20] INTEGER
So it looks like a tag for integer is expected after "Private 20" changing it
to
ErrorCode ::= CHOICE {
national [PRIVATE 19] INTEGER (-128..127),
private [PRIVATE 20] IMPLICIT INTEGER
}
Makes the dissection work:
errorCode: private (20)
private: -127
private: 2320
ANSI Mobile Application Part
Where
ANSI Mobile Application Part covers:
0000 f2 00 ..
Should the definition be IMPLICIT?
You are receiving this mail because:
- You are watching all bug changes.