blob: 45728eadb4f788c401bd0bcb37170370340207bb [file] [log] [blame]
Alexander Afanasyev33b72772014-01-26 23:22:58 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Junxiao Shiaf6569a2014-06-14 00:01:34 -07003 * Copyright (c) 2014, Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -070010 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
Junxiao Shiaf6569a2014-06-14 00:01:34 -070024 */
Alexander Afanasyev33b72772014-01-26 23:22:58 -080025
26#include "forwarder.hpp"
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060027#include "core/logger.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070028#include "core/random.hpp"
Junxiao Shid938a6b2014-05-11 23:40:29 -070029#include "available-strategies.hpp"
Junxiao Shiaf6569a2014-06-14 00:01:34 -070030#include <boost/random/uniform_int_distribution.hpp>
Alexander Afanasyev33b72772014-01-26 23:22:58 -080031
Alexander Afanasyev18bbf812014-01-29 01:40:23 -080032namespace nfd {
Alexander Afanasyev33b72772014-01-26 23:22:58 -080033
Junxiao Shi8c8d2182014-01-30 22:33:00 -070034NFD_LOG_INIT("Forwarder");
35
Junxiao Shif3c07812014-03-11 21:48:49 -070036using fw::Strategy;
37
Junxiao Shif3c07812014-03-11 21:48:49 -070038const Name Forwarder::LOCALHOST_NAME("ndn:/localhost");
Junxiao Shi88884492014-02-15 15:57:43 -070039
Junxiao Shic041ca32014-02-25 20:01:15 -070040Forwarder::Forwarder()
Junxiao Shia4f2be82014-03-02 22:56:41 -070041 : m_faceTable(*this)
HangZhangad4afd12014-03-01 11:03:08 +080042 , m_fib(m_nameTree)
Haowei Yuan78c84d12014-02-27 15:35:13 -060043 , m_pit(m_nameTree)
HangZhangc85a23c2014-03-01 15:55:55 +080044 , m_measurements(m_nameTree)
Junxiao Shif3c07812014-03-11 21:48:49 -070045 , m_strategyChoice(m_nameTree, fw::makeDefaultStrategy(*this))
Alexander Afanasyev33b72772014-01-26 23:22:58 -080046{
Junxiao Shif3c07812014-03-11 21:48:49 -070047 fw::installStrategies(*this);
Alexander Afanasyev33b72772014-01-26 23:22:58 -080048}
49
Steve DiBenedettobf6a93d2014-03-21 14:03:02 -060050Forwarder::~Forwarder()
51{
52
53}
54
Alexander Afanasyev33b72772014-01-26 23:22:58 -080055void
Junxiao Shid3c792f2014-01-30 00:46:13 -070056Forwarder::onIncomingInterest(Face& inFace, const Interest& interest)
57{
58 // receive Interest
Junxiao Shif3c07812014-03-11 21:48:49 -070059 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
60 " interest=" << interest.getName());
Junxiao Shi06887ac2014-02-13 20:15:42 -070061 const_cast<Interest&>(interest).setIncomingFaceId(inFace.getId());
Junxiao Shi6e694322014-04-03 10:27:13 -070062 m_counters.getNInInterests() ++;
Junxiao Shic041ca32014-02-25 20:01:15 -070063
Junxiao Shi88884492014-02-15 15:57:43 -070064 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -070065 bool isViolatingLocalhost = !inFace.isLocal() &&
66 LOCALHOST_NAME.isPrefixOf(interest.getName());
67 if (isViolatingLocalhost) {
68 NFD_LOG_DEBUG("onIncomingInterest face=" << inFace.getId() <<
69 " interest=" << interest.getName() << " violates /localhost");
70 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -070071 return;
72 }
Junxiao Shic041ca32014-02-25 20:01:15 -070073
Junxiao Shid3c792f2014-01-30 00:46:13 -070074 // PIT insert
Junxiao Shi40631842014-03-01 13:52:37 -070075 shared_ptr<pit::Entry> pitEntry = m_pit.insert(interest).first;
Junxiao Shic041ca32014-02-25 20:01:15 -070076
Junxiao Shid3c792f2014-01-30 00:46:13 -070077 // detect loop and record Nonce
78 bool isLoop = ! pitEntry->addNonce(interest.getNonce());
79 if (isLoop) {
80 // goto Interest loop pipeline
81 this->onInterestLoop(inFace, interest, pitEntry);
82 return;
83 }
Junxiao Shic041ca32014-02-25 20:01:15 -070084
Junxiao Shid3c792f2014-01-30 00:46:13 -070085 // cancel unsatisfy & straggler timer
86 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -070087
Junxiao Shif3c07812014-03-11 21:48:49 -070088 // is pending?
Junxiao Shid3c792f2014-01-30 00:46:13 -070089 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
Junxiao Shie17349a2014-03-25 00:55:38 -070090 bool isPending = inRecords.begin() != inRecords.end();
Junxiao Shid3c792f2014-01-30 00:46:13 -070091 if (!isPending) {
92 // CS lookup
93 const Data* csMatch = m_cs.find(interest);
94 if (csMatch != 0) {
95 // XXX should we lookup PIT for other Interests that also match csMatch?
96
97 // goto outgoing Data pipeline
98 this->onOutgoingData(*csMatch, inFace);
99 return;
100 }
101 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700102
Junxiao Shid3c792f2014-01-30 00:46:13 -0700103 // insert InRecord
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700104 pitEntry->insertOrUpdateInRecord(inFace.shared_from_this(), interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700105
Junxiao Shid3c792f2014-01-30 00:46:13 -0700106 // FIB lookup
Junxiao Shi40631842014-03-01 13:52:37 -0700107 shared_ptr<fib::Entry> fibEntry = m_fib.findLongestPrefixMatch(*pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700108
Junxiao Shid3c792f2014-01-30 00:46:13 -0700109 // dispatch to strategy
Junxiao Shif3c07812014-03-11 21:48:49 -0700110 this->dispatchToStrategy(pitEntry, bind(&Strategy::afterReceiveInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700111 cref(inFace), cref(interest), fibEntry, pitEntry));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700112}
113
114void
115Forwarder::onInterestLoop(Face& inFace, const Interest& interest,
116 shared_ptr<pit::Entry> pitEntry)
117{
Junxiao Shif3c07812014-03-11 21:48:49 -0700118 NFD_LOG_DEBUG("onInterestLoop face=" << inFace.getId() <<
119 " interest=" << interest.getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700120
Junxiao Shif3c07812014-03-11 21:48:49 -0700121 // (drop)
122}
123
124/** \brief compare two InRecords for picking outgoing Interest
125 * \return true if b is preferred over a
126 *
127 * This function should be passed to std::max_element over InRecordCollection.
128 * The outgoing Interest picked is the last incoming Interest
129 * that does not come from outFace.
130 * If all InRecords come from outFace, it's fine to pick that. This happens when
131 * there's only one InRecord that comes from outFace. The legit use is for
132 * vehicular network; otherwise, strategy shouldn't send to the sole inFace.
133 */
134static inline bool
135compare_pickInterest(const pit::InRecord& a, const pit::InRecord& b, const Face* outFace)
136{
137 bool isOutFaceA = a.getFace().get() == outFace;
138 bool isOutFaceB = b.getFace().get() == outFace;
139
140 if (!isOutFaceA && isOutFaceB) {
141 return false;
142 }
143 if (isOutFaceA && !isOutFaceB) {
144 return true;
145 }
146
147 return a.getLastRenewed() > b.getLastRenewed();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700148}
149
150void
Junxiao Shid938a6b2014-05-11 23:40:29 -0700151Forwarder::onOutgoingInterest(shared_ptr<pit::Entry> pitEntry, Face& outFace,
152 bool wantNewNonce)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700153{
Junxiao Shif3c07812014-03-11 21:48:49 -0700154 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
155 " interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700156
Junxiao Shi57f0f312014-03-16 11:52:20 -0700157 // scope control
158 if (pitEntry->violatesScope(outFace)) {
Junxiao Shif3c07812014-03-11 21:48:49 -0700159 NFD_LOG_DEBUG("onOutgoingInterest face=" << outFace.getId() <<
Junxiao Shi57f0f312014-03-16 11:52:20 -0700160 " interest=" << pitEntry->getName() << " violates scope");
Junxiao Shi11bd9c22014-03-13 20:44:13 -0700161 return;
162 }
163
Junxiao Shid3c792f2014-01-30 00:46:13 -0700164 // pick Interest
Junxiao Shif3c07812014-03-11 21:48:49 -0700165 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
166 pit::InRecordCollection::const_iterator pickedInRecord = std::max_element(
167 inRecords.begin(), inRecords.end(), bind(&compare_pickInterest, _1, _2, &outFace));
168 BOOST_ASSERT(pickedInRecord != inRecords.end());
Junxiao Shid938a6b2014-05-11 23:40:29 -0700169 shared_ptr<Interest> interest = const_pointer_cast<Interest>(
170 pickedInRecord->getInterest().shared_from_this());
171
172 if (wantNewNonce) {
173 interest = make_shared<Interest>(*interest);
Junxiao Shiaf6569a2014-06-14 00:01:34 -0700174 static boost::random::uniform_int_distribution<uint32_t> dist;
175 interest->setNonce(dist(getGlobalRng()));
Junxiao Shid938a6b2014-05-11 23:40:29 -0700176 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700177
Junxiao Shid3c792f2014-01-30 00:46:13 -0700178 // insert OutRecord
Junxiao Shid938a6b2014-05-11 23:40:29 -0700179 pitEntry->insertOrUpdateOutRecord(outFace.shared_from_this(), *interest);
Junxiao Shic041ca32014-02-25 20:01:15 -0700180
Junxiao Shid3c792f2014-01-30 00:46:13 -0700181 // set PIT unsatisfy timer
182 this->setUnsatisfyTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700183
Junxiao Shid3c792f2014-01-30 00:46:13 -0700184 // send Interest
Junxiao Shid938a6b2014-05-11 23:40:29 -0700185 outFace.sendInterest(*interest);
Junxiao Shi6e694322014-04-03 10:27:13 -0700186 m_counters.getNOutInterests() ++;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700187}
188
189void
Junxiao Shi09498f02014-02-26 19:41:08 -0700190Forwarder::onInterestReject(shared_ptr<pit::Entry> pitEntry)
Junxiao Shid3c792f2014-01-30 00:46:13 -0700191{
Junxiao Shid938a6b2014-05-11 23:40:29 -0700192 if (pitEntry->hasUnexpiredOutRecords()) {
193 NFD_LOG_ERROR("onInterestReject interest=" << pitEntry->getName() <<
194 " cannot reject forwarded Interest");
195 return;
196 }
Junxiao Shi09498f02014-02-26 19:41:08 -0700197 NFD_LOG_DEBUG("onInterestReject interest=" << pitEntry->getName());
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700198
Junxiao Shid3c792f2014-01-30 00:46:13 -0700199 // set PIT straggler timer
200 this->setStragglerTimer(pitEntry);
201}
202
203void
204Forwarder::onInterestUnsatisfied(shared_ptr<pit::Entry> pitEntry)
205{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700206 NFD_LOG_DEBUG("onInterestUnsatisfied interest=" << pitEntry->getName());
207
Junxiao Shid3c792f2014-01-30 00:46:13 -0700208 // invoke PIT unsatisfied callback
Junxiao Shif3c07812014-03-11 21:48:49 -0700209 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeExpirePendingInterest, _1,
Alexander Afanasyevf6980282014-05-13 18:28:40 -0700210 pitEntry));
Junxiao Shic041ca32014-02-25 20:01:15 -0700211
Junxiao Shif3c07812014-03-11 21:48:49 -0700212 // PIT delete
Junxiao Shid938a6b2014-05-11 23:40:29 -0700213 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Haowei Yuan78c84d12014-02-27 15:35:13 -0600214 m_pit.erase(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700215}
216
217void
218Forwarder::onIncomingData(Face& inFace, const Data& data)
219{
220 // receive Data
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700221 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() << " data=" << data.getName());
Junxiao Shi06887ac2014-02-13 20:15:42 -0700222 const_cast<Data&>(data).setIncomingFaceId(inFace.getId());
Junxiao Shi6e694322014-04-03 10:27:13 -0700223 m_counters.getNInDatas() ++;
Junxiao Shic041ca32014-02-25 20:01:15 -0700224
Junxiao Shi88884492014-02-15 15:57:43 -0700225 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -0700226 bool isViolatingLocalhost = !inFace.isLocal() &&
227 LOCALHOST_NAME.isPrefixOf(data.getName());
228 if (isViolatingLocalhost) {
229 NFD_LOG_DEBUG("onIncomingData face=" << inFace.getId() <<
230 " data=" << data.getName() << " violates /localhost");
231 // (drop)
Junxiao Shi88884492014-02-15 15:57:43 -0700232 return;
233 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700234
Junxiao Shid3c792f2014-01-30 00:46:13 -0700235 // PIT match
236 shared_ptr<pit::DataMatchResult> pitMatches = m_pit.findAllDataMatches(data);
237 if (pitMatches->begin() == pitMatches->end()) {
238 // goto Data unsolicited pipeline
239 this->onDataUnsolicited(inFace, data);
240 return;
241 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700242
Junxiao Shid3c792f2014-01-30 00:46:13 -0700243 // CS insert
244 m_cs.insert(data);
Junxiao Shic041ca32014-02-25 20:01:15 -0700245
Junxiao Shid3c792f2014-01-30 00:46:13 -0700246 std::set<shared_ptr<Face> > pendingDownstreams;
247 // foreach PitEntry
248 for (pit::DataMatchResult::iterator it = pitMatches->begin();
249 it != pitMatches->end(); ++it) {
250 shared_ptr<pit::Entry> pitEntry = *it;
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700251 NFD_LOG_DEBUG("onIncomingData matching=" << pitEntry->getName());
Junxiao Shic041ca32014-02-25 20:01:15 -0700252
Junxiao Shid3c792f2014-01-30 00:46:13 -0700253 // cancel unsatisfy & straggler timer
254 this->cancelUnsatisfyAndStragglerTimer(pitEntry);
Junxiao Shic041ca32014-02-25 20:01:15 -0700255
Junxiao Shid3c792f2014-01-30 00:46:13 -0700256 // remember pending downstreams
257 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
258 for (pit::InRecordCollection::const_iterator it = inRecords.begin();
259 it != inRecords.end(); ++it) {
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700260 if (it->getExpiry() > time::steady_clock::now()) {
Junxiao Shid3c792f2014-01-30 00:46:13 -0700261 pendingDownstreams.insert(it->getFace());
262 }
263 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700264
Junxiao Shid938a6b2014-05-11 23:40:29 -0700265 // invoke PIT satisfy callback
266 this->dispatchToStrategy(pitEntry, bind(&Strategy::beforeSatisfyPendingInterest, _1,
267 pitEntry, cref(inFace), cref(data)));
268
Junxiao Shid3c792f2014-01-30 00:46:13 -0700269 // mark PIT satisfied
270 pitEntry->deleteInRecords();
271 pitEntry->deleteOutRecord(inFace.shared_from_this());
Junxiao Shic041ca32014-02-25 20:01:15 -0700272
Junxiao Shid3c792f2014-01-30 00:46:13 -0700273 // set PIT straggler timer
274 this->setStragglerTimer(pitEntry);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700275 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700276
Junxiao Shid3c792f2014-01-30 00:46:13 -0700277 // foreach pending downstream
278 for (std::set<shared_ptr<Face> >::iterator it = pendingDownstreams.begin();
279 it != pendingDownstreams.end(); ++it) {
Junxiao Shida006f52014-05-16 11:18:00 -0700280 shared_ptr<Face> pendingDownstream = *it;
281 if (pendingDownstream.get() == &inFace) {
282 continue;
283 }
Junxiao Shid3c792f2014-01-30 00:46:13 -0700284 // goto outgoing Data pipeline
Junxiao Shida006f52014-05-16 11:18:00 -0700285 this->onOutgoingData(data, *pendingDownstream);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700286 }
287}
288
289void
290Forwarder::onDataUnsolicited(Face& inFace, const Data& data)
291{
292 // accept to cache?
Junxiao Shif3c07812014-03-11 21:48:49 -0700293 bool acceptToCache = inFace.isLocal();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700294 if (acceptToCache) {
295 // CS insert
Junxiao Shif3c07812014-03-11 21:48:49 -0700296 m_cs.insert(data, true);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700297 }
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700298
Junxiao Shif3c07812014-03-11 21:48:49 -0700299 NFD_LOG_DEBUG("onDataUnsolicited face=" << inFace.getId() <<
300 " data=" << data.getName() <<
301 (acceptToCache ? " cached" : " not cached"));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700302}
303
304void
305Forwarder::onOutgoingData(const Data& data, Face& outFace)
306{
Junxiao Shi8c8d2182014-01-30 22:33:00 -0700307 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() << " data=" << data.getName());
308
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700309 // /localhost scope control
Junxiao Shif3c07812014-03-11 21:48:49 -0700310 bool isViolatingLocalhost = !outFace.isLocal() &&
311 LOCALHOST_NAME.isPrefixOf(data.getName());
312 if (isViolatingLocalhost) {
313 NFD_LOG_DEBUG("onOutgoingData face=" << outFace.getId() <<
314 " data=" << data.getName() << " violates /localhost");
315 // (drop)
Junxiao Shi9b27bd22014-02-26 20:29:58 -0700316 return;
317 }
318
Junxiao Shif3c07812014-03-11 21:48:49 -0700319 // TODO traffic manager
Junxiao Shic041ca32014-02-25 20:01:15 -0700320
Junxiao Shid3c792f2014-01-30 00:46:13 -0700321 // send Data
322 outFace.sendData(data);
Junxiao Shi6e694322014-04-03 10:27:13 -0700323 m_counters.getNOutDatas() ++;
Junxiao Shid3c792f2014-01-30 00:46:13 -0700324}
325
326static inline bool
327compare_InRecord_expiry(const pit::InRecord& a, const pit::InRecord& b)
328{
329 return a.getExpiry() < b.getExpiry();
330}
331
332void
333Forwarder::setUnsatisfyTimer(shared_ptr<pit::Entry> pitEntry)
334{
335 const pit::InRecordCollection& inRecords = pitEntry->getInRecords();
336 pit::InRecordCollection::const_iterator lastExpiring =
337 std::max_element(inRecords.begin(), inRecords.end(),
338 &compare_InRecord_expiry);
339
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700340 time::steady_clock::TimePoint lastExpiry = lastExpiring->getExpiry();
341 time::nanoseconds lastExpiryFromNow = lastExpiry - time::steady_clock::now();
Junxiao Shid3c792f2014-01-30 00:46:13 -0700342 if (lastExpiryFromNow <= time::seconds(0)) {
343 // TODO all InRecords are already expired; will this happen?
344 }
Junxiao Shic041ca32014-02-25 20:01:15 -0700345
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700346 scheduler::cancel(pitEntry->m_unsatisfyTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700347 pitEntry->m_unsatisfyTimer = scheduler::schedule(lastExpiryFromNow,
Junxiao Shid3c792f2014-01-30 00:46:13 -0700348 bind(&Forwarder::onInterestUnsatisfied, this, pitEntry));
349}
350
351void
352Forwarder::setStragglerTimer(shared_ptr<pit::Entry> pitEntry)
353{
Junxiao Shi57f0f312014-03-16 11:52:20 -0700354 if (pitEntry->hasUnexpiredOutRecords()) {
355 NFD_LOG_DEBUG("setStragglerTimer " << pitEntry->getName() <<
356 " cannot set StragglerTimer when an OutRecord is pending");
357 return;
358 }
359
Alexander Afanasyeveb3197f2014-03-17 19:28:18 -0700360 time::nanoseconds stragglerTime = time::milliseconds(100);
Junxiao Shic041ca32014-02-25 20:01:15 -0700361
Junxiao Shi9f7455b2014-04-07 21:02:16 -0700362 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shic041ca32014-02-25 20:01:15 -0700363 pitEntry->m_stragglerTimer = scheduler::schedule(stragglerTime,
Haowei Yuan78c84d12014-02-27 15:35:13 -0600364 bind(&Pit::erase, &m_pit, pitEntry));
Junxiao Shid3c792f2014-01-30 00:46:13 -0700365}
366
367void
368Forwarder::cancelUnsatisfyAndStragglerTimer(shared_ptr<pit::Entry> pitEntry)
369{
Junxiao Shic041ca32014-02-25 20:01:15 -0700370 scheduler::cancel(pitEntry->m_unsatisfyTimer);
371 scheduler::cancel(pitEntry->m_stragglerTimer);
Junxiao Shid3c792f2014-01-30 00:46:13 -0700372}
373
Alexander Afanasyev18bbf812014-01-29 01:40:23 -0800374} // namespace nfd