Class BGPUpdatePathAttributeList

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

C++ definition

Represents the list of path attributes in a BGPv4 UPDATE message. See 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
origin BGPUpdatePathAttributesOrigin

mandatory attribute

asPath BGPUpdatePathAttributesASPath[]

mandatory attribute

nextHop BGPUpdatePathAttributesNextHop

mandatory attribute

localPref BGPUpdatePathAttributesLocalPref[]

optional attribute

atomicAggregate BGPUpdatePathAttributesAtomicAggregate[]

optional attribute

Source code:

//
// Represents the list of path attributes in a BGPv4 UPDATE message.
// See RFC 4271, section 4.3
//
class BGPUpdatePathAttributeList
{
    BGPUpdatePathAttributesOrigin origin; // mandatory attribute
    BGPUpdatePathAttributesASPath asPath[]; // mandatory attribute
    BGPUpdatePathAttributesNextHop nextHop; // mandatory attribute
    BGPUpdatePathAttributesLocalPref localPref[]; // optional attribute
    BGPUpdatePathAttributesAtomicAggregate atomicAggregate[]; // optional attribute
}