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