change default FreshnessPeriod to 0 ms
set InterestLifetime to default value when not present
do not encode ChildSelector if at default value
refs #3944
Change-Id: I4a3ebf5512d0d2270798ed212eab7903ba8b8ed0
diff --git a/src/selectors.hpp b/src/selectors.hpp
index 9a1d8a4..960947f 100644
--- a/src/selectors.hpp
+++ b/src/selectors.hpp
@@ -1,6 +1,6 @@
/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
/**
- * Copyright (c) 2013-2015 Regents of the University of California.
+ * Copyright (c) 2013-2017 Regents of the University of California.
*
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
*
@@ -28,6 +28,8 @@
namespace ndn {
+const int DEFAULT_CHILD_SELECTOR = 0;
+
/**
* @brief Abstraction implementing Interest selectors
*/
@@ -117,6 +119,10 @@
return m_childSelector;
}
+ /**
+ * @brief set ChildSelector
+ * @throw std::invalid_argument ChildSelector not 0 or 1
+ */
Selectors&
setChildSelector(int childSelector);