go-pfcp
go-pfcp copied to clipboard
PFCP (Packet Forwarding Control Protocol) in pure Go.
Hi, I am tryring to parse UserPlane Information from the Setup Association Response provided by Traveling VPP : https://github.com/travelping/upg-vpp I got this payoad : []uint8 len: 13, cap: 1456, [41,0,192,168,1,120,6,97,99,99,101,115,115]...
Some of the IE fields that are defined as OctetString type should perhaps accept `[]byte` or something instead of `string` in their constructors, as they expect more complicated contents than...
## New IEs Type | IE | comment | # octets -- | -- | -- | -- 272 | Partial Failure Information (PFCP Session Establishment Response) | Extendable /...
To ensure each method returns the expected value, we should add unit tests for them. - [x] uint8 (`ie_uint8_test.go` / #63, #69) - [x] uint16 (`ie_uint16_test.go` / #66) - [...
Hi, In [go-pfcp](https://github.com/wmnsk/go-pfcp)/[ie](https://github.com/wmnsk/go-pfcp/tree/master/ie)/pfd-contents.go , the type of this field may need to be []byte. ` AdditionalDomainNameAndProtocol []string` According to 29.244, Figure 8.2.39-4, this field is a compound field which contains...
Currently we need to iterate over children to find specific IEs and to get its values, which is a bit painful considering the number of children. Adding a struct for...
Related: #83 Still a Work in Progress. I look at each CT from 16.3, and update related IEs with latest spec (18.0.1).