Represents an OSPF Hello 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 |
---|---|---|
designatedRouter | IPAddress | |
areaID | IPAddress | |
backupDesignatedRouter | IPAddress | |
neighbor | IPAddress[] | |
checksum | short | |
type | char | |
authenticationType | short | |
routerPriority | char | |
version | char | |
routerID | IPAddress | |
routerDeadInterval | long | |
networkMask | IPAddress | |
authentication | char[8] | |
helloInterval | short | |
packetLength | short | |
options | OSPFOptions |
// // Represents an OSPF Hello packet // packet OSPFHelloPacket extends OSPFPacket { IPAddress networkMask; short helloInterval = 5; OSPFOptions options; char routerPriority = 0; long routerDeadInterval = 0; IPAddress designatedRouter; IPAddress backupDesignatedRouter; IPAddress neighbor[]; }