#include "RSVP.h"
#include "IPControlInfo.h"
#include "IPAddressResolver.h"
#include "common.h"
#include "Utils.h"
#include "XMLUtils.h"
#include "IPv4InterfaceData.h"
#include "TEDAccess.h"
#include "RoutingTableAccess.h"
#include "InterfaceTableAccess.h"
#include "LIBTableAccess.h"
#include "NotifierConsts.h"
Go to the source code of this file.
Defines | |
#define | PSB_REFRESH_INTERVAL 5.0 |
#define | RSB_REFRESH_INTERVAL 6.0 |
#define | PSB_TIMEOUT_INTERVAL 16.0 |
#define | RSB_TIMEOUT_INTERVAL 19.0 |
#define | PATH_ERR_UNFEASIBLE 1 |
#define | PATH_ERR_PREEMPTED 2 |
#define | PATH_ERR_NEXTHOP_FAILED 3 |
Functions | |
Define_Module (RSVP) | |
bool | operator== (const SessionObj_t &a, const SessionObj_t &b) |
bool | operator!= (const SessionObj_t &a, const SessionObj_t &b) |
bool | operator== (const FilterSpecObj_t &a, const FilterSpecObj_t &b) |
bool | operator!= (const FilterSpecObj_t &a, const FilterSpecObj_t &b) |
bool | operator== (const SenderTemplateObj_t &a, const SenderTemplateObj_t &b) |
bool | operator!= (const SenderTemplateObj_t &a, const SenderTemplateObj_t &b) |
std::ostream & | operator<< (std::ostream &os, const FlowSpecObj_t &a) |
std::ostream & | operator<< (std::ostream &os, const SessionObj_t &a) |
std::ostream & | operator<< (std::ostream &os, const SenderTemplateObj_t &a) |
#define PATH_ERR_NEXTHOP_FAILED 3 |
Definition at line 36 of file RSVP.cc.
Referenced by RSVP::processHELLO_TIMEOUT(), RSVP::processPathErrMsg(), and RSVP::processPathMsg().
#define PATH_ERR_PREEMPTED 2 |
Definition at line 35 of file RSVP.cc.
Referenced by RSVP::commitResv(), and RSVP::processPathErrMsg().
#define PATH_ERR_UNFEASIBLE 1 |
Definition at line 34 of file RSVP.cc.
Referenced by RSVP::commitResv(), and RSVP::processPathErrMsg().
#define PSB_REFRESH_INTERVAL 5.0 |
Definition at line 28 of file RSVP.cc.
Referenced by RSVP::processPSB_TIMER().
#define PSB_TIMEOUT_INTERVAL 16.0 |
Definition at line 31 of file RSVP.cc.
Referenced by RSVP::scheduleTimeout().
#define RSB_REFRESH_INTERVAL 6.0 |
Definition at line 29 of file RSVP.cc.
Referenced by RSVP::processRSB_REFRESH_TIMER().
#define RSB_TIMEOUT_INTERVAL 19.0 |
Definition at line 32 of file RSVP.cc.
Referenced by RSVP::scheduleTimeout().
Define_Module | ( | RSVP | ) |
bool operator!= | ( | const FilterSpecObj_t & | a, | |
const FilterSpecObj_t & | b | |||
) |
Definition at line 2166 of file RSVP.cc.
{ return !operator==(a, b); }
bool operator!= | ( | const SessionObj_t & | a, | |
const SessionObj_t & | b | |||
) |
Definition at line 2156 of file RSVP.cc.
{ return !operator==(a, b); }
bool operator!= | ( | const SenderTemplateObj_t & | a, | |
const SenderTemplateObj_t & | b | |||
) |
Definition at line 2176 of file RSVP.cc.
{ return !operator==(a, b); }
std::ostream& operator<< | ( | std::ostream & | os, | |
const FlowSpecObj_t & | a | |||
) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const SessionObj_t & | a | |||
) |
std::ostream& operator<< | ( | std::ostream & | os, | |
const SenderTemplateObj_t & | a | |||
) |
bool operator== | ( | const SessionObj_t & | a, | |
const SessionObj_t & | b | |||
) |
bool operator== | ( | const FilterSpecObj_t & | a, | |
const FilterSpecObj_t & | b | |||
) |