Rename interestLifetime to interestLifetimeMilliseconds and make it a double
diff --git a/ndn-cpp/Interest.cpp b/ndn-cpp/Interest.cpp
index 2b39b49..634559e 100644
--- a/ndn-cpp/Interest.cpp
+++ b/ndn-cpp/Interest.cpp
@@ -48,7 +48,7 @@
childSelector_ = interestStruct.childSelector;
answerOriginKind_ = interestStruct.answerOriginKind;
scope_ = interestStruct.scope;
- interestLifetime_ = interestStruct.interestLifetime;
+ interestLifetimeMilliseconds_ = interestStruct.interestLifetimeMilliseconds;
setVector(nonce_, interestStruct.nonce, interestStruct.nonceLength);
}
@@ -62,7 +62,7 @@
interestStruct.childSelector = childSelector_;
interestStruct.answerOriginKind = answerOriginKind_;
interestStruct.scope = scope_;
- interestStruct.interestLifetime = interestLifetime_;
+ interestStruct.interestLifetimeMilliseconds = interestLifetimeMilliseconds_;
interestStruct.nonceLength = nonce_.size();
if (nonce_.size() > 0)