Avoid deprecated ndn-cxx functions
Change-Id: I5d9ac045740267db783ff724c938b659b49c40ee
diff --git a/tools/dump/ndndump.cpp b/tools/dump/ndndump.cpp
index ed7fd93..cb1583f 100644
--- a/tools/dump/ndndump.cpp
+++ b/tools/dump/ndndump.cpp
@@ -207,8 +207,7 @@
shouldPrint = printPpp(out, payload, pkthdr->len);
break;
default:
- BOOST_ASSERT(false);
- return;
+ NDN_CXX_UNREACHABLE;
}
if (shouldPrint) {
@@ -220,9 +219,9 @@
}
void
-NdnDump::printTimestamp(std::ostream& os, const timeval& tv) const
+NdnDump::printTimestamp(std::ostream& os, const timeval& tv)
{
- /// \todo Add more timestamp formats (time since previous packet, time since first packet, ...)
+ // TODO: Add more timestamp formats (time since previous packet, time since first packet, ...)
os << tv.tv_sec
<< "."
<< std::setfill('0') << std::setw(6) << tv.tv_usec
@@ -520,7 +519,7 @@
bool isOk = false;
Block block;
- std::tie(isOk, block) = Block::fromBuffer(pkt, len);
+ std::tie(isOk, block) = Block::fromBuffer({pkt, len});
if (!isOk) {
// if packet is incomplete, we will not be able to process it
out << "NDN truncated packet, length " << len;
@@ -549,8 +548,7 @@
return true;
}
- bool isOk = false;
- std::tie(isOk, netPacket) = Block::fromBuffer(&*begin, std::distance(begin, end));
+ std::tie(isOk, netPacket) = Block::fromBuffer({begin, end});
if (!isOk) {
// if network packet is fragmented, we will not be able to process it
out << " fragment";