Represents an OSPF Link State Update packet
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.
OSPFPacket (packet) |
Represents an OSPF packet header |
Name | Type | Description |
---|---|---|
areaID | IPAddress | |
routerLSAs | OSPFRouterLSA[] | |
summaryLSAs | OSPFSummaryLSA[] | |
networkLSAs | OSPFNetworkLSA[] | |
checksum | short | |
numberOfLSAs | unsigned long | |
type | char | |
authenticationType | short | |
version | char | |
routerID | IPAddress | |
asExternalLSAs | OSPFASExternalLSA[] | |
authentication | char[8] | |
packetLength | short |
// // Represents an OSPF Link State Update packet // packet OSPFLinkStateUpdatePacket extends OSPFPacket { unsigned long numberOfLSAs; OSPFRouterLSA routerLSAs[]; OSPFNetworkLSA networkLSAs[]; OSPFSummaryLSA summaryLSAs[]; OSPFASExternalLSA asExternalLSAs[]; }