RSVPPacket Class Reference
#include <RSVPPacket.h>
List of all members.
Detailed Description
RSVP message common part.
This class adds convenience get() and set() methods to the generated base class, but no extra data.
Constructor & Destructor Documentation
RSVPPacket::RSVPPacket |
( |
const char * |
name = NULL , |
|
|
int |
kind = 0 | |
|
) |
| | [inline] |
Referenced by dup().
00032 : RSVPPacket_Base(name,RSVP_TRAFFIC) { this->rsvpKind_var = kind; }
RSVPPacket::RSVPPacket |
( |
const RSVPPacket & |
other |
) |
[inline] |
00033 : RSVPPacket_Base(other.getName()) {operator=(other);}
Member Function Documentation
Referenced by RSVPPacket().
00034 {RSVPPacket_Base::operator=(other); return *this;}
virtual RSVPPacket* RSVPPacket::dup |
( |
|
) |
const [inline, virtual] |
IPAddress RSVPPacket::getDestAddress |
( |
|
) |
[inline] |
00037 {return getSession().DestAddress;}
int RSVPPacket::getTunnelId |
( |
|
) |
[inline] |
00038 {return getSession().Tunnel_Id;}
int RSVPPacket::getExTunnelId |
( |
|
) |
[inline] |
00039 {return getSession().Extended_Tunnel_Id;}
int RSVPPacket::getSetupPri |
( |
|
) |
[inline] |
00040 {return getSession().setupPri;}
int RSVPPacket::getHoldingPri |
( |
|
) |
[inline] |
00041 {return getSession().holdingPri;}
bool RSVPPacket::isInSession |
( |
SessionObj_t * |
s |
) |
[inline] |
00042 {
00043 return getSession().DestAddress==s->DestAddress &&
00044 getSession().Tunnel_Id==s->Tunnel_Id &&
00045 getSession().Extended_Tunnel_Id==s->Extended_Tunnel_Id;
00046 }
The documentation for this class was generated from the following file: