Represents an OSPF LSA header
class OSPFLSAHeader extends cObject
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 |
---|---|---|
lsAge | unsigned short | |
lsOptions | OSPFOptions | |
lsType | char | |
linkStateID | unsigned long | |
advertisingRouter | IPAddress | |
lsSequenceNumber | long | |
lsChecksum | short | |
lsaLength | unsigned short |
// // Represents an OSPF LSA header // //class OSPFLSAHeader extends cObject class OSPFLSAHeader { unsigned short lsAge = 0; OSPFOptions lsOptions; char lsType @enum(LSAType) = RouterLSAType; unsigned long linkStateID; IPAddress advertisingRouter; long lsSequenceNumber = 0; short lsChecksum = 0; unsigned short lsaLength = 0; }