LDP.cc File Reference
#include <omnetpp.h>
#include <iostream>
#include <fstream>
#include <algorithm>
#include "ConstType.h"
#include "LDP.h"
#include "LIBTable.h"
#include "InterfaceTableAccess.h"
#include "IPv4InterfaceData.h"
#include "RoutingTableAccess.h"
#include "LIBTableAccess.h"
#include "TEDAccess.h"
#include "NotifierConsts.h"
#include "UDPPacket.h"
#include "TCPSegment.h"
Function Documentation
bool operator!= |
( |
const FEC_TLV & |
a, |
|
|
const FEC_TLV & |
b | |
|
) |
| | |
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const FEC_TLV & |
a | |
|
) |
| | |
00078 {
00079 os << "addr=" << a.addr << " length=" << a.length;
00080 return os;
00081 }
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const LDP::peer_info & |
p | |
|
) |
| | |
00054 {
00055 os << "fecid=" << r.fecid << " peer=" << r.peer;
00056 return os;
00057 }
std::ostream& operator<< |
( |
std::ostream & |
os, |
|
|
const LDP::fec_t & |
f | |
|
) |
| | |
00048 {
00049 os << "fecid=" << f.fecid << " addr=" << f.addr << " length=" << f.length << " nextHop=" << f.nextHop;
00050 return os;
00051 }
00037 {
00038 os << "fecid=" << f.fecid << " peer=" << f.peer << " label=" << f.label;
00039 return os;
00040 }
bool operator== |
( |
const FEC_TLV & |
a, |
|
|
const FEC_TLV & |
b | |
|
) |
| | |