Class OSPFRouterLSA

File: Network/OSPFv2/OSPFPacket.msg

Represents an OSPF Router LSA

Inheritance diagram:

The following diagram shows part of the inheritance hierarchy. Unresolved types are missing from the diagram. Click here to see the full picture.

Extends:

OSPFLSA

common ancestor type for all LSAs

Fields:

Name Type Description
V_VirtualLinkEndpoint bool
E_ASBoundaryRouter bool
B_AreaBorderRouter bool
numberOfLinks unsigned short
links Link[]

Source code:

class OSPFRouterLSA extends OSPFLSA
{
    fields:
        bool            V_VirtualLinkEndpoint = false;
        bool            E_ASBoundaryRouter = false;
        bool            B_AreaBorderRouter = false;
        unsigned short  numberOfLinks = 0;
        Link            links[];
}