We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I found that the decode and encode (Bytes(), Len(), SerializeTo()) method for pdufield.UDHList were wrong. According to 3GPP TS 23.040 Section 9.2.3.4. https://www.etsi.org/deliver/etsi_ts/123000_123099/123040/16.00.00_60/ts_123040v160000p.pdf Each IEI data inside the UDH should not have tailing zeros (0x00) So we should change following definition
// UDH is a PDU field used for user data header. type UDH struct { IEI Fixed IELength Fixed IEData Variable }
To:
type UDH struct { IEI Fixed IELength Fixed IEData Raw }
And redefine the Raw type
The text was updated successfully, but these errors were encountered:
Happy to review a PR
Sorry, something went wrong.
No branches or pull requests
I found that the decode and encode (Bytes(), Len(), SerializeTo()) method for pdufield.UDHList were wrong.
According to 3GPP TS 23.040 Section 9.2.3.4. https://www.etsi.org/deliver/etsi_ts/123000_123099/123040/16.00.00_60/ts_123040v160000p.pdf Each IEI data inside the UDH should not have tailing zeros (0x00)
So we should change following definition
To:
And redefine the Raw type
The text was updated successfully, but these errors were encountered: