blob: 7af0bd452d5e55e511f7af661511db29e1435228 [file] [log] [blame]
akmhoque298385a2014-02-13 14:13:09 -06001#include "nlsr_nexthop.hpp"
2
3ostream&
4operator<<(ostream& os, NextHop& nh)
5{
6 os<<"Face: "<<nh.getConnectingFace()<<" Route Cost: "<<nh.getRouteCost();
7 return os;
8}