commit | 298385ac9659462382ebb7b47cd3176e0d465faf | [log] [tgz] |
---|---|---|
author | akmhoque <akmhoque@gmail.com> | Thu Feb 13 14:13:09 2014 -0600 |
committer | akmhoque <akmhoque@gmail.com> | Thu Feb 13 14:13:09 2014 -0600 |
tree | 5c854bdb408d3cfb33ab23f4dd44ded9b9a574f5 | |
parent | 8ff29cc4e2dd12e5d8f1cdca028111bf9a28842a [diff] [blame] |
Adding waf script for building
diff --git a/src/nlsr_nexthop.cpp b/src/nlsr_nexthop.cpp new file mode 100644 index 0000000..7af0bd4 --- /dev/null +++ b/src/nlsr_nexthop.cpp
@@ -0,0 +1,8 @@ +#include "nlsr_nexthop.hpp" + +ostream& +operator<<(ostream& os, NextHop& nh) +{ + os<<"Face: "<<nh.getConnectingFace()<<" Route Cost: "<<nh.getRouteCost(); + return os; +}