class Link extends cObject
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram. Click here to see the full picture.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram. Click here to see the full picture.
Name | Type | Description |
---|---|---|
linkID | IPAddress | |
linkData | unsigned long | |
numberOfTOS | unsigned char | |
tosData | TOSData[] | |
type | unsigned char | |
linkCost | unsigned long |
//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[]; }