commit | f76efef51cfa9ff2f2b0ae10cd63a32046d03ffa | [log] [tgz] |
---|---|---|
author | Jeff Thompson <jefft0@gmail.com> | Mon Nov 18 18:16:24 2013 -0800 |
committer | Jeff Thompson <jefft0@gmail.com> | Mon Nov 18 18:16:24 2013 -0800 |
tree | a566d136bc190f444ab34790049be2fae9b5d4e5 | |
parent | 72b58a4aad6ad4cdd3c86259ed5c73ec10d788ab [diff] |
Interest: In setNonce, make the argument const Blob&.
diff --git a/include/ndn-cpp/interest.hpp b/include/ndn-cpp/interest.hpp index e4e20ba..aee7e0d 100644 --- a/include/ndn-cpp/interest.hpp +++ b/include/ndn-cpp/interest.hpp
@@ -354,7 +354,7 @@ setInterestLifetimeMilliseconds(Milliseconds value) { interestLifetimeMilliseconds_ = value; } void - setNonce(const std::vector<uint8_t>& value) { nonce_ = value; } + setNonce(const Blob& value) { nonce_ = value; } private: void