Packet LDPPacket

File: src/networklayer/ldp/LDPPacket.msg

Base class for LDP packets

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.

Known subclasses:

LDPAddress (packet)

LDP Address Message

LDPHello (packet)

LDP Hello Message

LDPIni (packet)

LDP Ini Message

LDPLabelMapping (packet)

LDP Label Mapping Message

LDPLabelRequest (packet)

LDP Label Request Message

LDPNotify (packet)

LDP notification message

Fields:

Name Type Description
senderAddress IPAddress
type int
receiverAddress IPAddress

Source code:

//
// Base class for LDP packets
//
packet LDPPacket
{
    int type;
    IPAddress senderAddress;
    IPAddress receiverAddress;
}