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