blob: 5767be89c186a725643b83720b744ebdbfd6f342 [file] [log] [blame]
Jeff Thompson25b4e612013-10-10 16:03:24 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -07002/**
Jeff Thompson7687dc02013-09-13 11:54:07 -07003 * Copyright (C) 2013 Regents of the University of California.
4 * @author: Jeff Thompson <jefft0@remap.ucla.edu>
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -07005 * See COPYING for copyright and distribution information.
6 */
7
8#ifndef NDN_NODE_HPP
9#define NDN_NODE_HPP
10
Jeff Thompson7aec0252013-08-22 17:29:57 -070011#include "common.hpp"
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070012#include "interest.hpp"
Jeff Thompson86507bc2013-08-23 20:51:38 -070013#include "data.hpp"
14#include "transport/tcp-transport.hpp"
Jeff Thompson1f8a31a2013-09-30 16:18:47 -070015#include "forwarding-flags.hpp"
Jeff Thompson25b4e612013-10-10 16:03:24 -070016#include "encoding/element-listener.hpp"
17
18struct ndn_Interest;
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070019
20namespace ndn {
21
Jeff Thompson7aec0252013-08-22 17:29:57 -070022/**
23 * An OnData function object is used to pass a callback to expressInterest.
24 */
Jeff Thompsona6d15c82013-09-17 15:34:32 -070025typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&, const ptr_lib::shared_ptr<Data>&)> OnData;
Jeff Thompson7aec0252013-08-22 17:29:57 -070026
27/**
28 * An OnTimeout function object is used to pass a callback to expressInterest.
29 */
Jeff Thompsona6d15c82013-09-17 15:34:32 -070030typedef func_lib::function<void(const ptr_lib::shared_ptr<const Interest>&)> OnTimeout;
Jeff Thompson7aec0252013-08-22 17:29:57 -070031
Jeff Thompson86507bc2013-08-23 20:51:38 -070032/**
33 * An OnInterest function object is used to pass a callback to registerPrefix.
34 */
Jeff Thompson9cc4be42013-08-27 18:12:41 -070035typedef func_lib::function<void
Jeff Thompsonb510e3e2013-10-07 18:53:20 -070036 (const ptr_lib::shared_ptr<const Name>&, const ptr_lib::shared_ptr<const Interest>&, Transport&, uint64_t)> OnInterest;
Jeff Thompson86507bc2013-08-23 20:51:38 -070037
Jeff Thompson590ec232013-09-18 15:55:56 -070038/**
39 * An OnRegisterFailed function object is used to report when registerPrefix fails.
40 */
41typedef func_lib::function<void(const ptr_lib::shared_ptr<const Name>&)> OnRegisterFailed;
42
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070043class Face;
Jeff Thompson590ec232013-09-18 15:55:56 -070044class KeyChain;
45
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070046class Node : public ElementListener {
47public:
48 /**
Jeff Thompson10e34382013-08-22 13:34:46 -070049 * Create a new Node for communication with an NDN hub with the given Transport object and connectionInfo.
50 * @param transport A shared_ptr to a Transport object used for communication.
51 * @param transport A shared_ptr to a Transport::ConnectionInfo to be used to connect to the transport.
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070052 */
Jeff Thompson1656e6a2013-08-29 18:01:48 -070053 Node(const ptr_lib::shared_ptr<Transport>& transport, const ptr_lib::shared_ptr<const Transport::ConnectionInfo>& connectionInfo);
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -070054
55 /**
Jeff Thompson4fe45512013-08-23 14:06:38 -070056 * Send the Interest through the transport, read the entire response and call onData(interest, data).
57 * @param interest A reference to the Interest. This copies the Interest.
58 * @param onData A function object to call when a matching data packet is received. This copies the function object, so you may need to
59 * use func_lib::ref() as appropriate.
60 * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it.
61 * This copies the function object, so you may need to use func_lib::ref() as appropriate.
Jeff Thompson978c1522013-11-12 23:03:10 -080062 * @param wireFormat A WireFormat object used to encode the message.
Jeff Thompson11095142013-10-01 16:20:28 -070063 * @return The pending interest ID which can be used with removePendingInterest.
Jeff Thompson4fe45512013-08-23 14:06:38 -070064 */
Jeff Thompson62992e42013-10-07 18:50:51 -070065 uint64_t
Jeff Thompson978c1522013-11-12 23:03:10 -080066 expressInterest(const Interest& interest, const OnData& onData, const OnTimeout& onTimeout, WireFormat& wireFormat);
Jeff Thompson7aec0252013-08-22 17:29:57 -070067
68 /**
Jeff Thompson11095142013-10-01 16:20:28 -070069 * Remove the pending interest entry with the pendingInterestId from the pending interest table.
70 * This does not affect another pending interest with a different pendingInterestId, even it if has the same interest name.
71 * If there is no entry with the pendingInterestId, do nothing.
72 * @param pendingInterestId The ID returned from expressInterest.
73 */
74 void
Jeff Thompson62992e42013-10-07 18:50:51 -070075 removePendingInterest(uint64_t pendingInterestId);
Jeff Thompson11095142013-10-01 16:20:28 -070076
77 /**
Jeff Thompson86507bc2013-08-23 20:51:38 -070078 * Register prefix with the connected NDN hub and call onInterest when a matching interest is received.
79 * @param prefix A reference to a Name for the prefix to register. This copies the Name.
80 * @param onInterest A function object to call when a matching interest is received. This copies the function object, so you may need to
81 * use func_lib::ref() as appropriate.
Jeff Thompson590ec232013-09-18 15:55:56 -070082 * @param onRegisterFailed A function object to call if failed to retrieve the connected hub’s ID or failed to register the prefix.
83 * This calls onRegisterFailed(prefix) where prefix is the prefix given to registerPrefix.
Jeff Thompson86507bc2013-08-23 20:51:38 -070084 * @param flags The flags for finer control of which interests are forward to the application.
Jeff Thompson978c1522013-11-12 23:03:10 -080085 * @param wireFormat A WireFormat object used to encode the message.
Jeff Thompson11095142013-10-01 16:20:28 -070086 * @return The registered prefix ID which can be used with removeRegisteredPrefix.
Jeff Thompson86507bc2013-08-23 20:51:38 -070087 */
Jeff Thompson62992e42013-10-07 18:50:51 -070088 uint64_t
Jeff Thompson590ec232013-09-18 15:55:56 -070089 registerPrefix
Jeff Thompson1f8a31a2013-09-30 16:18:47 -070090 (const Name& prefix, const OnInterest& onInterest, const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags,
91 WireFormat& wireFormat);
Jeff Thompson86507bc2013-08-23 20:51:38 -070092
93 /**
Jeff Thompson11095142013-10-01 16:20:28 -070094 * Remove the registered prefix entry with the registeredPrefixId from the pending interest table.
95 * This does not affect another registered prefix with a different registeredPrefixId, even it if has the same prefix name.
96 * If there is no entry with the registeredPrefixId, do nothing.
97 * @param registeredPrefixId The ID returned from registerPrefix.
98 */
99 void
Jeff Thompson62992e42013-10-07 18:50:51 -0700100 removeRegisteredPrefix(uint64_t registeredPrefixId);
Jeff Thompson11095142013-10-01 16:20:28 -0700101
102 /**
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700103 * Process any data to receive. For each element received, call onReceivedElement.
104 * This is non-blocking and will return immediately if there is no data to receive.
105 * You should repeatedly call this from an event loop, with calls to sleep as needed so that the loop doesn't use 100% of the CPU.
106 * @throw This may throw an exception for reading data or in the callback for processing the data. If you
107 * call this from an main event loop, you may want to catch and log/disregard all exceptions.
108 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700109 void
110 processEvents();
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700111
Jeff Thompson0050abe2013-09-17 12:50:25 -0700112 const ptr_lib::shared_ptr<Transport>&
113 getTransport() { return transport_; }
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700114
Jeff Thompson0050abe2013-09-17 12:50:25 -0700115 const ptr_lib::shared_ptr<const Transport::ConnectionInfo>&
116 getConnectionInfo() { return connectionInfo_; }
Jeff Thompson10e34382013-08-22 13:34:46 -0700117
Jeff Thompson0050abe2013-09-17 12:50:25 -0700118 void
Jeff Thompson97223af2013-09-24 17:01:27 -0700119 onReceivedElement(const uint8_t *element, size_t elementLength);
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700120
Jeff Thompson0050abe2013-09-17 12:50:25 -0700121 void
122 shutdown();
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700123
124private:
Jeff Thompson11095142013-10-01 16:20:28 -0700125 class PendingInterest {
Jeff Thompson557b81e2013-08-21 15:13:51 -0700126 public:
127 /**
128 * Create a new PitEntry and set the timeoutTime_ based on the current time and the interest lifetime.
Jeff Thompson11095142013-10-01 16:20:28 -0700129 * @param pendingInterestId A unique ID for this entry, which you should get with getNextPendingInteresId().
Jeff Thompson48917f02013-08-21 17:12:45 -0700130 * @param interest A shared_ptr for the interest.
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700131 * @param onData A function object to call when a matching data packet is received.
Jeff Thompson7aec0252013-08-22 17:29:57 -0700132 * @param onTimeout A function object to call if the interest times out. If onTimeout is an empty OnTimeout(), this does not use it.
Jeff Thompson557b81e2013-08-21 15:13:51 -0700133 */
Jeff Thompson11095142013-10-01 16:20:28 -0700134 PendingInterest
Jeff Thompson62992e42013-10-07 18:50:51 -0700135 (uint64_t pendingInterestId, const ptr_lib::shared_ptr<const Interest>& interest, const OnData& onData,
Jeff Thompson11095142013-10-01 16:20:28 -0700136 const OnTimeout& onTimeout);
137
138 /**
139 * Return the next unique pending interest ID.
140 */
Jeff Thompson62992e42013-10-07 18:50:51 -0700141 static uint64_t
Jeff Thompson11095142013-10-01 16:20:28 -0700142 getNextPendingInterestId()
143 {
144 return ++lastPendingInterestId_;
145 }
146
147 /**
148 * Return the pendingInterestId given to the constructor.
149 */
Jeff Thompson62992e42013-10-07 18:50:51 -0700150 uint64_t
Jeff Thompson11095142013-10-01 16:20:28 -0700151 getPendingInterestId() { return pendingInterestId_; }
Jeff Thompson557b81e2013-08-21 15:13:51 -0700152
Jeff Thompson0050abe2013-09-17 12:50:25 -0700153 const ptr_lib::shared_ptr<const Interest>&
154 getInterest() { return interest_; }
Jeff Thompson557b81e2013-08-21 15:13:51 -0700155
Jeff Thompson0050abe2013-09-17 12:50:25 -0700156 const OnData&
157 getOnData() { return onData_; }
Jeff Thompson557b81e2013-08-21 15:13:51 -0700158
159 /**
Jeff Thompson48917f02013-08-21 17:12:45 -0700160 * Get the struct ndn_Interest for the interest_.
Jeff Thompson557b81e2013-08-21 15:13:51 -0700161 * WARNING: Assume that this PitEntry was created with new, so that no copy constructor is invoked between calls.
162 * This class is private to Node and only used by its methods, so this should be OK.
163 * TODO: Doesn't this functionality belong in the Interest class?
164 * @return A reference to the ndn_Interest struct.
165 * WARNING: The resulting pointers in are invalid uses getInterest() to manipulate the object which could reallocate memory.
166 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700167 const struct ndn_Interest&
168 getInterestStruct()
Jeff Thompson48917f02013-08-21 17:12:45 -0700169 {
Jeff Thompson25b4e612013-10-10 16:03:24 -0700170 return *interestStruct_;
Jeff Thompson48917f02013-08-21 17:12:45 -0700171 }
172
173 /**
Jeff Thompson3b0ed532013-11-05 13:43:40 -0800174 * Check if this interest is timed out.
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700175 * @param nowMilliseconds The current time in milliseconds from ndn_getNowMilliseconds.
Jeff Thompson3b0ed532013-11-05 13:43:40 -0800176 * @return true if this interest timed out, otherwise false.
Jeff Thompson48917f02013-08-21 17:12:45 -0700177 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700178 bool
Jeff Thompson3b0ed532013-11-05 13:43:40 -0800179 isTimedOut(MillisecondsSince1970 nowMilliseconds)
180 {
181 return timeoutTimeMilliseconds_ >= 0.0 && nowMilliseconds >= timeoutTimeMilliseconds_;
182 }
183
184 /**
185 * Call onTimeout_ (if defined). This ignores exceptions from the onTimeout_.
186 */
187 void
188 callTimeout();
Jeff Thompson557b81e2013-08-21 15:13:51 -0700189
190 private:
Jeff Thompson48917f02013-08-21 17:12:45 -0700191 ptr_lib::shared_ptr<const Interest> interest_;
Jeff Thompson557b81e2013-08-21 15:13:51 -0700192 std::vector<struct ndn_NameComponent> nameComponents_;
193 std::vector<struct ndn_ExcludeEntry> excludeEntries_;
Jeff Thompson25b4e612013-10-10 16:03:24 -0700194 ptr_lib::shared_ptr<struct ndn_Interest> interestStruct_;
Jeff Thompson557b81e2013-08-21 15:13:51 -0700195
Jeff Thompson62992e42013-10-07 18:50:51 -0700196 static uint64_t lastPendingInterestId_; /**< A class variable used to get the next unique ID. */
197 uint64_t pendingInterestId_; /**< A unique identifier for this entry so it can be deleted */
Jeff Thompson7aec0252013-08-22 17:29:57 -0700198 const OnData onData_;
199 const OnTimeout onTimeout_;
Jeff Thompson9a8e82f2013-10-17 14:13:43 -0700200 MillisecondsSince1970 timeoutTimeMilliseconds_; /**< The time when the interest times out in milliseconds according to ndn_getNowMilliseconds, or -1 for no timeout. */
Jeff Thompson557b81e2013-08-21 15:13:51 -0700201 };
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700202
Jeff Thompson11095142013-10-01 16:20:28 -0700203 class RegisteredPrefix {
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700204 public:
205 /**
206 * Create a new PrefixEntry.
Jeff Thompson11095142013-10-01 16:20:28 -0700207 * @param registeredPrefixId A unique ID for this entry, which you should get with getNextRegisteredPrefixId().
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700208 * @param prefix A shared_ptr for the prefix.
209 * @param onInterest A function object to call when a matching data packet is received.
210 */
Jeff Thompson62992e42013-10-07 18:50:51 -0700211 RegisteredPrefix(uint64_t registeredPrefixId, const ptr_lib::shared_ptr<const Name>& prefix, const OnInterest& onInterest)
Jeff Thompson11095142013-10-01 16:20:28 -0700212 : registeredPrefixId_(registeredPrefixId), prefix_(prefix), onInterest_(onInterest)
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700213 {
214 }
215
Jeff Thompson11095142013-10-01 16:20:28 -0700216 /**
217 * Return the next unique entry ID.
218 */
Jeff Thompson62992e42013-10-07 18:50:51 -0700219 static uint64_t
Jeff Thompson11095142013-10-01 16:20:28 -0700220 getNextRegisteredPrefixId()
221 {
222 return ++lastRegisteredPrefixId_;
223 }
224
225 /**
226 * Return the registeredPrefixId given to the constructor.
227 */
Jeff Thompson62992e42013-10-07 18:50:51 -0700228 uint64_t
Jeff Thompson11095142013-10-01 16:20:28 -0700229 getRegisteredPrefixId() { return registeredPrefixId_; }
230
Jeff Thompson0050abe2013-09-17 12:50:25 -0700231 const ptr_lib::shared_ptr<const Name>&
232 getPrefix() { return prefix_; }
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700233
Jeff Thompson0050abe2013-09-17 12:50:25 -0700234 const OnInterest&
235 getOnInterest() { return onInterest_; }
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700236
237 private:
Jeff Thompson62992e42013-10-07 18:50:51 -0700238 static uint64_t lastRegisteredPrefixId_; /**< A class variable used to get the next unique ID. */
239 uint64_t registeredPrefixId_; /**< A unique identifier for this entry so it can be deleted */
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700240 ptr_lib::shared_ptr<const Name> prefix_;
241 const OnInterest onInterest_;
242 };
Jeff Thompson557b81e2013-08-21 15:13:51 -0700243
244 /**
Jeff Thompson86507bc2013-08-23 20:51:38 -0700245 * An NdndIdFetcher receives the Data packet with the publisher public key digest for the connected NDN hub.
246 * This class is a function object for the callbacks. It only holds a pointer to an Info object, so it is OK to copy the pointer.
247 */
248 class NdndIdFetcher {
249 public:
250 class Info;
251 NdndIdFetcher(ptr_lib::shared_ptr<NdndIdFetcher::Info> info)
252 : info_(info)
253 {
254 }
255
256 /**
257 * We received the ndnd ID.
258 * @param interest
259 * @param data
260 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700261 void
262 operator()(const ptr_lib::shared_ptr<const Interest>& interest, const ptr_lib::shared_ptr<Data>& ndndIdData);
Jeff Thompson86507bc2013-08-23 20:51:38 -0700263
264 /**
265 * We timed out fetching the ndnd ID.
266 * @param interest
267 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700268 void
269 operator()(const ptr_lib::shared_ptr<const Interest>& timedOutInterest);
Jeff Thompson86507bc2013-08-23 20:51:38 -0700270
271 class Info {
272 public:
Jeff Thompson11095142013-10-01 16:20:28 -0700273 /**
274 *
275 * @param node
276 * @param registeredPrefixId The PrefixEntry::getNextRegisteredPrefixId() which registerPrefix got so it could return it to the caller.
277 * @param prefix
278 * @param onInterest
279 * @param onRegisterFailed
280 * @param flags
281 * @param wireFormat
282 */
Jeff Thompson62992e42013-10-07 18:50:51 -0700283 Info(Node *node, uint64_t registeredPrefixId, const Name& prefix, const OnInterest& onInterest,
Jeff Thompson11095142013-10-01 16:20:28 -0700284 const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags, WireFormat& wireFormat)
285 : node_(*node), registeredPrefixId_(registeredPrefixId), prefix_(new Name(prefix)), onInterest_(onInterest), onRegisterFailed_(onRegisterFailed),
Jeff Thompson6d7369b2013-09-19 14:40:21 -0700286 flags_(flags), wireFormat_(wireFormat)
Jeff Thompson86507bc2013-08-23 20:51:38 -0700287 {
288 }
289
Jeff Thompson1656e6a2013-08-29 18:01:48 -0700290 Node& node_;
Jeff Thompson62992e42013-10-07 18:50:51 -0700291 uint64_t registeredPrefixId_;
Jeff Thompson590ec232013-09-18 15:55:56 -0700292 ptr_lib::shared_ptr<const Name> prefix_;
Jeff Thompson86507bc2013-08-23 20:51:38 -0700293 const OnInterest onInterest_;
Jeff Thompson590ec232013-09-18 15:55:56 -0700294 const OnRegisterFailed onRegisterFailed_;
Jeff Thompson1f8a31a2013-09-30 16:18:47 -0700295 ForwardingFlags flags_;
Jeff Thompson590ec232013-09-18 15:55:56 -0700296 WireFormat& wireFormat_;
Jeff Thompson86507bc2013-08-23 20:51:38 -0700297 };
298
299 private:
300 ptr_lib::shared_ptr<Info> info_;
301 };
302
303 /**
Jeff Thompson557b81e2013-08-21 15:13:51 -0700304 * Find the entry from the pit_ where the name conforms to the entry's interest selectors, and
305 * the entry interest name is the longest that matches name.
306 * @param name The name to find the interest for (from the incoming data packet).
307 * @return The index in pit_ of the pit entry, or -1 if not found.
308 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700309 int
Jeff Thompson590ec232013-09-18 15:55:56 -0700310 getEntryIndexForExpressedInterest(const Name& name);
Jeff Thompson557b81e2013-08-21 15:13:51 -0700311
Jeff Thompson86507bc2013-08-23 20:51:38 -0700312 /**
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700313 * Find the first entry from the registeredPrefixTable_ where the entry prefix is the longest that matches name.
314 * @param name The name to find the PrefixEntry for (from the incoming interest packet).
315 * @return A pointer to the entry, or 0 if not found.
316 */
Jeff Thompson11095142013-10-01 16:20:28 -0700317 RegisteredPrefix*
Jeff Thompson0050abe2013-09-17 12:50:25 -0700318 getEntryForRegisteredPrefix(const Name& name);
Jeff Thompson590ec232013-09-18 15:55:56 -0700319
Jeff Thompson9cc4be42013-08-27 18:12:41 -0700320 /**
Jeff Thompson86507bc2013-08-23 20:51:38 -0700321 * Do the work of registerPrefix once we know we are connected with an ndndId_.
Jeff Thompson11095142013-10-01 16:20:28 -0700322 * @param registeredPrefixId The PrefixEntry::getNextRegisteredPrefixId() which registerPrefix got so it could return it to the caller.
Jeff Thompson86507bc2013-08-23 20:51:38 -0700323 * @param prefix
324 * @param onInterest
Jeff Thompson590ec232013-09-18 15:55:56 -0700325 * @param onRegisterFailed
Jeff Thompson86507bc2013-08-23 20:51:38 -0700326 * @param flags
Jeff Thompson590ec232013-09-18 15:55:56 -0700327 * @param wireFormat
328 */
Jeff Thompson0050abe2013-09-17 12:50:25 -0700329 void
Jeff Thompson590ec232013-09-18 15:55:56 -0700330 registerPrefixHelper
Jeff Thompson62992e42013-10-07 18:50:51 -0700331 (uint64_t registeredPrefixId, const ptr_lib::shared_ptr<const Name>& prefix, const OnInterest& onInterest,
Jeff Thompson11095142013-10-01 16:20:28 -0700332 const OnRegisterFailed& onRegisterFailed, const ForwardingFlags& flags, WireFormat& wireFormat);
Jeff Thompson86507bc2013-08-23 20:51:38 -0700333
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700334 ptr_lib::shared_ptr<Transport> transport_;
Jeff Thompson10e34382013-08-22 13:34:46 -0700335 ptr_lib::shared_ptr<const Transport::ConnectionInfo> connectionInfo_;
Jeff Thompson11095142013-10-01 16:20:28 -0700336 std::vector<ptr_lib::shared_ptr<PendingInterest> > pendingInterestTable_;
337 std::vector<ptr_lib::shared_ptr<RegisteredPrefix> > registeredPrefixTable_;
Jeff Thompson86507bc2013-08-23 20:51:38 -0700338 Interest ndndIdFetcherInterest_;
Jeff Thompson03616c92013-09-12 14:30:01 -0700339 Blob ndndId_;
Jeff Thompsonbf50a1a2013-08-20 18:01:01 -0700340};
341
342}
343
344#endif