NETWORK ATTACKS FRAMEWORK
1.0.0
A NETwork Attacks framework. Making network attacks impact evaluation easier!
|
#include <NA_aodv_rrep.h>
Public Member Functions | |
RREP_ack (const char *name="RREPAckAodvMsg") | |
RREP_ack (const RREP_ack &m) | |
RREP_ack & | operator= (const RREP_ack &m) |
virtual RREP_ack * | dup () const |
uint8_t | getReserved () const |
Public Attributes | |
u_int8_t | type |
u_int8_t | reserved |
Private Member Functions | |
void | copy (const RREP_ack &other) |
Definition at line 73 of file NA_aodv_rrep.h.
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.
void RREP_ack::copy | ( | const RREP_ack & | other | ) | [inline, private] |
Definition at line 162 of file NA_aodv_msg_struct.h.
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;}
Definition at line 246 of file NA_aodv_msg_struct.cc.
{ if (this==&m) return *this; AODV_msg::operator=(m); copy(m); return *this; }
u_int8_t RREP_ack::reserved |
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.