Represents an OSPF Hello packet
The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.
The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.
Name | Type | Description |
---|---|---|
OSPFPacket | packet |
Represents an OSPF packet header |
Name | Type | Description |
---|---|---|
networkMask | IPAddress | |
helloInterval | short | |
options | OSPFOptions | |
routerPriority | char | |
routerDeadInterval | long | |
designatedRouter | IPAddress | |
backupDesignatedRouter | IPAddress | |
neighbor | IPAddress[] | |
version | char | |
type | char | |
packetLength | short | |
routerID | IPAddress | |
areaID | IPAddress | |
checksum | short | |
authenticationType | short | |
authentication | char[8] |
// // 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[]; }