blob: 0a375b0cdf1268296acd31d8e6ec24d95fdc5c73 [file] [log] [blame]
akmhoque53353462014-04-22 08:43:45 -05001#include "nexthop.hpp"
2
3namespace nlsr {
4
5std::ostream&
6operator<<(std::ostream& os, NextHop& nh)
7{
8 os << "Face: " << nh.getConnectingFace() << " Route Cost: " <<
9 nh.getRouteCost();
10 return os;
11}
12
13}//namespace nlsr