Gitiles
Code Review
Sign In
gerrit.named-data.net
/
NLSR
/
b1710aac0b50709895f3be00cc68265d19ef01fd
/
.
/
src
/
nlsr_nexthop.cpp
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