Message OSPFLinkStateUpdatePacket

File: Network/OSPFv2/OSPFPacket.msg

C++ definition: click here

Represents an OSPF Link State Update packet

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

OSPFPacket

Represents an OSPF packet header

Fields:

Name Type Description
numberOfLSAs unsigned long
routerLSAs OSPFRouterLSA[]
networkLSAs OSPFNetworkLSA[]
summaryLSAs OSPFSummaryLSA[]
asExternalLSAs OSPFASExternalLSA[]

Source code:

message OSPFLinkStateUpdatePacket extends OSPFPacket
{
    fields:
        unsigned long     numberOfLSAs;
        OSPFRouterLSA     routerLSAs[];
        OSPFNetworkLSA    networkLSAs[];
        OSPFSummaryLSA    summaryLSAs[];
        OSPFASExternalLSA asExternalLSAs[];
}