INET Framework for OMNeT++/OMNEST
|
#include <RSVPPathMsg.h>
Public Member Functions | |
RSVPPathTear (const char *name=NULL, int kind=PTEAR_MESSAGE) | |
RSVPPathTear (const RSVPPathTear &other) | |
RSVPPathTear & | operator= (const RSVPPathTear &other) |
virtual RSVPPathTear * | dup () const |
IPAddress | getNHOP () |
IPAddress | getLIH () |
IPAddress | getSrcAddress () |
int | getLspId () |
RSVP PATH TEAR message
This class adds convenience get() and set() methods to the generated base class, but no extra data.
RSVPPathTear::RSVPPathTear | ( | const char * | name = NULL , |
int | kind = PTEAR_MESSAGE |
||
) | [inline] |
Referenced by dup().
: RSVPPathTear_Base(name,kind) {}
RSVPPathTear::RSVPPathTear | ( | const RSVPPathTear & | other | ) | [inline] |
: RSVPPathTear_Base(other.getName()) {operator=(other);}
virtual RSVPPathTear* RSVPPathTear::dup | ( | ) | const [inline, virtual] |
{return new RSVPPathTear(*this);}
IPAddress RSVPPathTear::getLIH | ( | ) | [inline] |
{return getHop().Logical_Interface_Handle;}
int RSVPPathTear::getLspId | ( | ) | [inline] |
Referenced by RSVP::processPathTearMsg().
{return getSenderTemplate().Lsp_Id;}
IPAddress RSVPPathTear::getNHOP | ( | ) | [inline] |
{return getHop().Next_Hop_Address;}
IPAddress RSVPPathTear::getSrcAddress | ( | ) | [inline] |
{return getSenderTemplate().SrcAddress;}
RSVPPathTear& RSVPPathTear::operator= | ( | const RSVPPathTear & | other | ) | [inline] |
Referenced by RSVPPathTear().
{RSVPPathTear_Base::operator=(other); return *this;}