Class AODVRREP

File: src/inet/routing/aodv/AODVControlPackets.msg

C++ definition

Represents an AODV Route Reply

Usage diagram:

The following diagram shows usage relationships between types. Unresolved types are missing from the diagram.

Inheritance diagram:

The following diagram shows inheritance relationships for this type. Unresolved types are missing from the diagram.

Extends:

Name Type Description
AODVControlPacket packet

Base packet for AODV Control Packets

Fields:

Name Type Description
packetType unsigned int
repairFlag bool
ackRequiredFlag bool
prefixSize unsigned int
hopCount unsigned int
destAddr L3Address
destSeqNum unsigned int
originatorAddr L3Address
originatorSeqNum unsigned int
lifeTime simtime_t

Source code:

//
// Represents an AODV Route Reply
//
class AODVRREP extends AODVControlPacket
{
    packetType = RREP;
    bool repairFlag;
    bool ackRequiredFlag;
    unsigned int prefixSize;
    unsigned int hopCount;
    L3Address destAddr;
    unsigned int destSeqNum;
    L3Address originatorAddr;
    unsigned int originatorSeqNum;
    simtime_t lifeTime;
}