blob: 79061428256b1a4f24679a7525608ce904984773 [file] [log] [blame]
#include "nlsr_nexthop.hpp"
namespace nlsr {
ostream&
operator<<(ostream& os, NextHop& nh)
{
os<<"Face: "<<nh.getConnectingFace()<<" Route Cost: "<<nh.getRouteCost();
return os;
}
}//namespace nlsr