UnreachableNode

Namespace inet::aodv

UnreachableNode

struct

Helper struct to represent (L3Address, sequence number) pairs in a RERR message

Fields

Name Type Description
addr L3Address

The IP address of the destination that has become unreachable due to a link break.

seqNum uint32_t

The sequence number in the route table entry for the destination listed in the previous Unreachable Destination IP Address field.

Source code

//
// Helper struct to represent (L3Address, sequence number) pairs in a RERR message
//
struct UnreachableNode
{
    @packetData;
    L3Address addr;    // The IP address of the destination that has become unreachable due to a link break.
    uint32_t seqNum;    // The sequence number in the route table entry for the destination listed in the previous Unreachable Destination IP Address field.
}

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