Gitiles
Code Review
Sign In
gerrit.named-data.net
/
NLSR
/
298385ac9659462382ebb7b47cd3176e0d465faf
/
.
/
src
/
nlsr_nexthop.cpp
blob: 7af0bd452d5e55e511f7af661511db29e1435228 [
file
] [
log
] [
blame
]
akmhoque
298385a
2014-02-13 14:13:09 -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
}