blob: e58b23cafbee78f835bd21a2c13a1ce6880c12aa [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