Class BGPASPathSegment

File: src/inet/routing/bgpv4/BGPMessage/BGPASPathSegment.msg

C++ definition

Represents a BGPv4 AS_PATH path attribute (RFC 4271 Section 4.3)

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Fields:

Name Type Description
type unsigned char
length unsigned char
asValue unsigned short[]

Source code:

//
// 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[];
}