Represents a BGPv4 AS_PATH path attribute (RFC 4271 Section 4.3)
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Name | Type | Description |
---|---|---|
type | unsigned char | |
length | unsigned char | |
asValue | unsigned short[] |
// // Represents a BGPv4 AS_PATH path attribute (RFC 4271 Section 4.3) // class BGPASPathSegment { unsigned char type @enum(BGPPathSegmentType); unsigned char length; unsigned short asValue[]; }