Class Link

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

C++ definition

(no description)

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
linkID IPv4Address
linkData unsigned long
type unsigned char
numberOfTOS unsigned char
linkCost unsigned long
tosData TOSData[]

Source code:

class Link
{
    IPv4Address linkID;
    unsigned long linkData = 0;
    unsigned char type @enum(LinkType) = POINTTOPOINT_LINK;
    unsigned char numberOfTOS = 0;
    unsigned long linkCost = 1;
    TOSData tosData[];
}