Class Link

File: src/networklayer/ospfv2/OSPFPacket.msg

class Link extends cObject

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.

Fields:

Name Type Description
linkID IPAddress
linkData unsigned long
numberOfTOS unsigned char
tosData TOSData[]
type unsigned char
linkCost unsigned long

Source code:

//class Link extends cObject
class Link
{
    IPAddress linkID;
    unsigned long linkData = 0;
    unsigned char type @enum(LinkType) = PointToPointLink;
    unsigned char numberOfTOS = 0;
    unsigned long linkCost = 1;
    TOSData tosData[];
}