NETWORK ATTACKS FRAMEWORK  1.0.0
A NETwork Attacks framework. Making network attacks impact evaluation easier!
RREP_ack Struct Reference

#include <NA_aodv_rrep.h>

Inheritance diagram for RREP_ack:
AODV_msg

List of all members.

Public Member Functions

 RREP_ack (const char *name="RREPAckAodvMsg")
 RREP_ack (const RREP_ack &m)
RREP_ackoperator= (const RREP_ack &m)
virtual RREP_ackdup () const
uint8_t getReserved () const

Public Attributes

u_int8_t type
u_int8_t reserved

Private Member Functions

void copy (const RREP_ack &other)

Detailed Description

Definition at line 73 of file NA_aodv_rrep.h.


Constructor & Destructor Documentation

RREP_ack::RREP_ack ( const char *  name = "RREPAckAodvMsg") [inline, explicit]

Definition at line 156 of file NA_aodv_msg_struct.h.

: AODV_msg (name) {setBitLength(2*8);}
RREP_ack::RREP_ack ( const RREP_ack m)

Definition at line 241 of file NA_aodv_msg_struct.cc.

                                    : AODV_msg(m)
{
    copy(m);
}

Member Function Documentation

void RREP_ack::copy ( const RREP_ack other) [inline, private]

Definition at line 162 of file NA_aodv_msg_struct.h.

{ reserved = other.reserved; }
virtual RREP_ack* RREP_ack::dup ( ) const [inline, virtual]

Reimplemented from AODV_msg.

Definition at line 159 of file NA_aodv_msg_struct.h.

{return new RREP_ack(*this);}
uint8_t RREP_ack::getReserved ( ) const [inline]

Definition at line 160 of file NA_aodv_msg_struct.h.

{return reserved;}
RREP_ack & RREP_ack::operator= ( const RREP_ack m)

Definition at line 246 of file NA_aodv_msg_struct.cc.

{
    if (this==&m) return *this;
    AODV_msg::operator=(m);
    copy(m);
    return *this;
}

Member Data Documentation

Definition at line 76 of file NA_aodv_rrep.h.

u_int8_t RREP_ack::type

Reimplemented from AODV_msg.

Definition at line 75 of file NA_aodv_rrep.h.


The documentation for this struct was generated from the following files:
 All Classes Files Functions Variables Typedefs Enumerator Defines