MUPExtended represents BGP MUP Extended Community as described in https://datatracker.ietf.org/doc/html/draft-mpmz-bess-mup-safi-00#section-3.2
| 10 | // MUPExtended represents BGP MUP Extended Community as described in |
| 11 | // https://datatracker.ietf.org/doc/html/draft-mpmz-bess-mup-safi-00#section-3.2 |
| 12 | type MUPExtended struct { |
| 13 | SubType ExtendedCommunityAttrSubType |
| 14 | SegmentID2 uint16 |
| 15 | SegmentID4 uint32 |
| 16 | } |
| 17 | |
| 18 | func (e *MUPExtended) Serialize() ([]byte, error) { |
| 19 | buf := make([]byte, 8) |
nothing calls this directly
no outgoing calls
no test coverage detected