INET Framework for OMNeT++/OMNEST
|
#include <RSVPResvMsg.h>
Public Member Functions | |
RSVPResvError (const char *name=NULL, int kind=RERROR_MESSAGE) | |
RSVPResvError (const RSVPResvError &other) | |
RSVPResvError & | operator= (const RSVPResvError &other) |
virtual RSVPResvError * | dup () const |
IPAddress | getNHOP () |
IPAddress | getLIH () |
RESV ERROR message
This class adds convenience get() and set() methods to the generated base class, but no extra data.
RSVPResvError::RSVPResvError | ( | const char * | name = NULL , |
int | kind = RERROR_MESSAGE |
||
) | [inline] |
Referenced by dup().
: RSVPResvError_Base(name,kind) {}
RSVPResvError::RSVPResvError | ( | const RSVPResvError & | other | ) | [inline] |
: RSVPResvError_Base(other.getName()) {operator=(other);}
virtual RSVPResvError* RSVPResvError::dup | ( | ) | const [inline, virtual] |
{return new RSVPResvError(*this);}
IPAddress RSVPResvError::getLIH | ( | ) | [inline] |
{return getHop().Logical_Interface_Handle;}
IPAddress RSVPResvError::getNHOP | ( | ) | [inline] |
{return getHop().Next_Hop_Address;}
RSVPResvError& RSVPResvError::operator= | ( | const RSVPResvError & | other | ) | [inline] |
Referenced by RSVPResvError().
{RSVPResvError_Base::operator=(other); return *this;}