Class OSPFASExternalLSAContents

File: src/inet/routing/ospfv2/OSPFPacket.msg

C++ definition

Represents the contents of an OSPF AS External LSA

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
networkMask IPv4Address
E_ExternalMetricType bool
routeCost unsigned long
forwardingAddress IPv4Address
externalRouteTag long
externalTOSInfo ExternalTOSInfo[]

Source code:

//
// Represents the contents of an OSPF AS External LSA
//
class OSPFASExternalLSAContents
{
    IPv4Address networkMask;
    bool E_ExternalMetricType = false;
    unsigned long routeCost = 1;
    IPv4Address forwardingAddress;
    long externalRouteTag = 0;
    ExternalTOSInfo externalTOSInfo[];
}