Ospfv3DdOptions

Namespace inet::ospfv3

Ospfv3DdOptions

struct

options struct for Database Description packets

Fields

Name Type Description
reserved uint16_t

13 bits

iBit bool

this packet is the initial DD packet

mBit bool

more DD packets will follow

msBit bool

1=the router is the master, 0=router is the slave

Source code

// options struct for Database Description packets
struct Ospfv3DdOptions
{
    @packetData;
    uint16_t reserved = 0;     // 13 bits
    bool iBit;  //this packet is the initial DD packet
    bool mBit;  //more DD packets will follow
    bool msBit; //1=the router is the master, 0=router is the slave
}

File: src/inet/routing/ospfv3/Ospfv3Packet.msg