#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.
Definition at line 66 of file RSVPResvMsg.h.
RSVPResvError::RSVPResvError | ( | const char * | name = NULL , |
|
int | kind = RERROR_MESSAGE | |||
) | [inline] |
Definition at line 69 of file RSVPResvMsg.h.
Referenced by dup().
: RSVPResvError_Base(name,kind) {}
RSVPResvError::RSVPResvError | ( | const RSVPResvError & | other | ) | [inline] |
Definition at line 70 of file RSVPResvMsg.h.
: RSVPResvError_Base(other.getName()) {operator=(other);}
virtual RSVPResvError* RSVPResvError::dup | ( | ) | const [inline, virtual] |
Definition at line 72 of file RSVPResvMsg.h.
{return new RSVPResvError(*this);}
IPAddress RSVPResvError::getLIH | ( | ) | [inline] |
Definition at line 75 of file RSVPResvMsg.h.
{return getHop().Logical_Interface_Handle;}
IPAddress RSVPResvError::getNHOP | ( | ) | [inline] |
Definition at line 74 of file RSVPResvMsg.h.
{return getHop().Next_Hop_Address;}
RSVPResvError& RSVPResvError::operator= | ( | const RSVPResvError & | other | ) | [inline] |
Definition at line 71 of file RSVPResvMsg.h.
Referenced by RSVPResvError().
{RSVPResvError_Base::operator=(other); return *this;}