Packet BGPKeepAliveMessage

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

C++ definition

Represents a BGPv4 KEEPALIVE message.

KEEPALIVE messages are exchanged as often as necessary between systems to avoid exceeding the BGP Hold Timer (constant defined in BGPOpen).

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.

Extends:

Name Type Description
BGPHeader packet

Represents a BGPv4 message header.

Fields:

Name Type Description
type char
byteLength

Source code:

//
// Represents a BGPv4 KEEPALIVE message.
//
// KEEPALIVE messages are exchanged as often as necessary between systems
// to avoid exceeding the BGP Hold Timer (constant defined in BGPOpen).
//
packet BGPKeepAliveMessage extends BGPHeader
{
    type = BGP_KEEPALIVE;
}