Gitiles
Code Review
Sign In
gerrit.named-data.net
/
NLSR
/
9d19a49f2d4f9fca7bbfc85032d44cb29b2d26be
/
.
/
nlsr_nexthop.cpp
blob: 7af0bd452d5e55e511f7af661511db29e1435228 [
file
] [
log
] [
blame
]
akmhoque
dfa4a5b
2014-02-03 20:12:29 -0600
[
diff
] [
blame
]
1
#include
"nlsr_nexthop.hpp"
2
3
ostream
&
4
operator
<<(
ostream
&
os
,
NextHop
&
nh
)
5
{
6
os
<<
"Face: "
<<
nh
.
getConnectingFace
()<<
" Route Cost: "
<<
nh
.
getRouteCost
();
7
return
os
;
8
}