Represents an OSPF packet header
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.
OSPFDatabaseDescriptionPacket (packet) |
Represents an OSPF Database Description packet |
OSPFHelloPacket (packet) |
Represents an OSPF Hello packet |
OSPFLinkStateAcknowledgementPacket (packet) |
Represents an OSPF Link State Acknowledgement packet |
OSPFLinkStateRequestPacket (packet) |
Represents an OSPF Link State Request packet |
OSPFLinkStateUpdatePacket (packet) |
Represents an OSPF Link State Update packet |
Name | Type | Description |
---|---|---|
routerID | IPAddress | |
areaID | IPAddress | |
authentication | char[8] | |
checksum | short | |
type | char | |
packetLength | short | |
authenticationType | short | |
version | char |
// // Represents an OSPF packet header // packet OSPFPacket { char version = 2; char type @enum(OSPFPacketType) = HelloPacket; short packetLength = 0; IPAddress routerID; IPAddress areaID; short checksum = 0; short authenticationType = 0; char authentication[8]; }