Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 3 | * 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 Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 10 | * |
| 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 Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 24 | */ |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 25 | |
| 26 | #include "ncc-strategy.hpp" |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 27 | #include "core/random.hpp" |
| 28 | #include <boost/random/uniform_int_distribution.hpp> |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 29 | |
| 30 | namespace nfd { |
| 31 | namespace fw { |
| 32 | |
Junxiao Shi | e93d6a3 | 2014-09-07 16:13:22 -0700 | [diff] [blame] | 33 | const Name NccStrategy::STRATEGY_NAME("ndn:/localhost/nfd/strategy/ncc/%FD%01"); |
Junxiao Shi | f3c0781 | 2014-03-11 21:48:49 -0700 | [diff] [blame] | 34 | |
| 35 | NccStrategy::NccStrategy(Forwarder& forwarder, const Name& name) |
| 36 | : Strategy(forwarder, name) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 37 | { |
| 38 | } |
| 39 | |
| 40 | NccStrategy::~NccStrategy() |
| 41 | { |
| 42 | } |
| 43 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 44 | const time::microseconds NccStrategy::DEFER_FIRST_WITHOUT_BEST_FACE = time::microseconds(4000); |
| 45 | const time::microseconds NccStrategy::DEFER_RANGE_WITHOUT_BEST_FACE = time::microseconds(75000); |
Alexander Afanasyev | eb3197f | 2014-03-17 19:28:18 -0700 | [diff] [blame] | 46 | const time::nanoseconds NccStrategy::MEASUREMENTS_LIFETIME = time::seconds(16); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 47 | |
| 48 | void |
| 49 | NccStrategy::afterReceiveInterest(const Face& inFace, |
| 50 | const Interest& interest, |
| 51 | shared_ptr<fib::Entry> fibEntry, |
| 52 | shared_ptr<pit::Entry> pitEntry) |
| 53 | { |
| 54 | const fib::NextHopList& nexthops = fibEntry->getNextHops(); |
| 55 | if (nexthops.size() == 0) { |
| 56 | this->rejectPendingInterest(pitEntry); |
| 57 | return; |
| 58 | } |
| 59 | |
| 60 | shared_ptr<PitEntryInfo> pitEntryInfo = |
| 61 | pitEntry->getOrCreateStrategyInfo<PitEntryInfo>(); |
Junxiao Shi | 8bfd56d | 2014-10-08 10:06:00 -0700 | [diff] [blame] | 62 | bool isNewPitEntry = !pitEntry->hasUnexpiredOutRecords(); |
| 63 | if (!isNewPitEntry) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 64 | return; |
| 65 | } |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 66 | |
| 67 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 68 | this->getMeasurementsEntryInfo(pitEntry); |
| 69 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 70 | time::microseconds deferFirst = DEFER_FIRST_WITHOUT_BEST_FACE; |
| 71 | time::microseconds deferRange = DEFER_RANGE_WITHOUT_BEST_FACE; |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 72 | size_t nUpstreams = nexthops.size(); |
| 73 | |
| 74 | shared_ptr<Face> bestFace = measurementsEntryInfo->getBestFace(); |
| 75 | if (static_cast<bool>(bestFace) && fibEntry->hasNextHop(bestFace) && |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 76 | pitEntry->canForwardTo(*bestFace)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 77 | // TODO Should we use `randlow = 100 + nrand48(h->seed) % 4096U;` ? |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 78 | deferFirst = measurementsEntryInfo->prediction; |
| 79 | deferRange = time::microseconds((deferFirst.count() + 1) / 2); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 80 | --nUpstreams; |
| 81 | this->sendInterest(pitEntry, bestFace); |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 82 | pitEntryInfo->bestFaceTimeout = scheduler::schedule( |
| 83 | measurementsEntryInfo->prediction, |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 84 | bind(&NccStrategy::timeoutOnBestFace, this, weak_ptr<pit::Entry>(pitEntry))); |
| 85 | } |
| 86 | else { |
| 87 | // use first nexthop |
| 88 | this->sendInterest(pitEntry, nexthops.begin()->getFace()); |
| 89 | // TODO avoid sending to inFace |
| 90 | } |
| 91 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 92 | shared_ptr<Face> previousFace = measurementsEntryInfo->previousFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 93 | if (static_cast<bool>(previousFace) && fibEntry->hasNextHop(previousFace) && |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 94 | pitEntry->canForwardTo(*previousFace)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 95 | --nUpstreams; |
| 96 | } |
| 97 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 98 | if (nUpstreams > 0) { |
| 99 | pitEntryInfo->maxInterval = std::max(time::microseconds(1), |
| 100 | time::microseconds((2 * deferRange.count() + nUpstreams - 1) / nUpstreams)); |
| 101 | } |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 102 | else { |
| 103 | // Normally, maxInterval is unused if there aren't any face beyond best and previousBest. |
| 104 | // However, in case FIB entry gains a new nexthop before doPropagate executes (bug 1853), |
| 105 | // this maxInterval would be used to determine when the next doPropagate would happen. |
| 106 | pitEntryInfo->maxInterval = deferFirst; |
| 107 | } |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 108 | pitEntryInfo->propagateTimer = scheduler::schedule(deferFirst, |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 109 | bind(&NccStrategy::doPropagate, this, |
| 110 | weak_ptr<pit::Entry>(pitEntry), weak_ptr<fib::Entry>(fibEntry))); |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | NccStrategy::doPropagate(weak_ptr<pit::Entry> pitEntryWeak, weak_ptr<fib::Entry> fibEntryWeak) |
| 115 | { |
| 116 | shared_ptr<pit::Entry> pitEntry = pitEntryWeak.lock(); |
| 117 | if (!static_cast<bool>(pitEntry)) { |
| 118 | return; |
| 119 | } |
| 120 | shared_ptr<fib::Entry> fibEntry = fibEntryWeak.lock(); |
| 121 | if (!static_cast<bool>(fibEntry)) { |
| 122 | return; |
| 123 | } |
| 124 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 125 | shared_ptr<PitEntryInfo> pitEntryInfo = pitEntry->getStrategyInfo<PitEntryInfo>(); |
| 126 | // pitEntryInfo is guaranteed to exist here, because doPropagate is triggered |
| 127 | // from a timer set by NccStrategy. |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 128 | BOOST_ASSERT(static_cast<bool>(pitEntryInfo)); |
| 129 | |
| 130 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 131 | this->getMeasurementsEntryInfo(pitEntry); |
| 132 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 133 | shared_ptr<Face> previousFace = measurementsEntryInfo->previousFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 134 | if (static_cast<bool>(previousFace) && fibEntry->hasNextHop(previousFace) && |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 135 | pitEntry->canForwardTo(*previousFace)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 136 | this->sendInterest(pitEntry, previousFace); |
| 137 | } |
| 138 | |
| 139 | const fib::NextHopList& nexthops = fibEntry->getNextHops(); |
| 140 | bool isForwarded = false; |
| 141 | for (fib::NextHopList::const_iterator it = nexthops.begin(); it != nexthops.end(); ++it) { |
| 142 | shared_ptr<Face> face = it->getFace(); |
Junxiao Shi | 57f0f31 | 2014-03-16 11:52:20 -0700 | [diff] [blame] | 143 | if (pitEntry->canForwardTo(*face)) { |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 144 | isForwarded = true; |
| 145 | this->sendInterest(pitEntry, face); |
| 146 | break; |
| 147 | } |
| 148 | } |
| 149 | |
| 150 | if (isForwarded) { |
Junxiao Shi | cbb490a | 2014-08-13 12:24:24 -0700 | [diff] [blame] | 151 | boost::random::uniform_int_distribution<time::nanoseconds::rep> dist(0, |
| 152 | pitEntryInfo->maxInterval.count() - 1); |
Junxiao Shi | af6569a | 2014-06-14 00:01:34 -0700 | [diff] [blame] | 153 | time::nanoseconds deferNext = time::nanoseconds(dist(getGlobalRng())); |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 154 | pitEntryInfo->propagateTimer = scheduler::schedule(deferNext, |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 155 | bind(&NccStrategy::doPropagate, this, |
| 156 | weak_ptr<pit::Entry>(pitEntry), weak_ptr<fib::Entry>(fibEntry))); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | void |
| 161 | NccStrategy::timeoutOnBestFace(weak_ptr<pit::Entry> pitEntryWeak) |
| 162 | { |
| 163 | shared_ptr<pit::Entry> pitEntry = pitEntryWeak.lock(); |
| 164 | if (!static_cast<bool>(pitEntry)) { |
| 165 | return; |
| 166 | } |
| 167 | shared_ptr<measurements::Entry> measurementsEntry = this->getMeasurements().get(*pitEntry); |
| 168 | |
| 169 | for (int i = 0; i < UPDATE_MEASUREMENTS_N_LEVELS; ++i) { |
| 170 | if (!static_cast<bool>(measurementsEntry)) { |
| 171 | // going out of this strategy's namespace |
| 172 | return; |
| 173 | } |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 174 | this->getMeasurements().extendLifetime(*measurementsEntry, MEASUREMENTS_LIFETIME); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 175 | |
| 176 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 177 | this->getMeasurementsEntryInfo(measurementsEntry); |
| 178 | measurementsEntryInfo->adjustPredictUp(); |
| 179 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 180 | measurementsEntry = this->getMeasurements().getParent(*measurementsEntry); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 181 | } |
| 182 | } |
| 183 | |
| 184 | void |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 185 | NccStrategy::beforeSatisfyInterest(shared_ptr<pit::Entry> pitEntry, |
| 186 | const Face& inFace, const Data& data) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 187 | { |
Junxiao Shi | 82e7f58 | 2014-09-07 15:15:40 -0700 | [diff] [blame] | 188 | if (pitEntry->getInRecords().empty()) { |
| 189 | // PIT entry has already been satisfied (and is now waiting for straggler timer to expire) |
| 190 | // NCC does not collect measurements for non-best face |
| 191 | return; |
| 192 | } |
| 193 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 194 | shared_ptr<measurements::Entry> measurementsEntry = this->getMeasurements().get(*pitEntry); |
| 195 | |
| 196 | for (int i = 0; i < UPDATE_MEASUREMENTS_N_LEVELS; ++i) { |
| 197 | if (!static_cast<bool>(measurementsEntry)) { |
| 198 | // going out of this strategy's namespace |
| 199 | return; |
| 200 | } |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 201 | this->getMeasurements().extendLifetime(*measurementsEntry, MEASUREMENTS_LIFETIME); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 202 | |
| 203 | shared_ptr<MeasurementsEntryInfo> measurementsEntryInfo = |
| 204 | this->getMeasurementsEntryInfo(measurementsEntry); |
| 205 | measurementsEntryInfo->updateBestFace(inFace); |
| 206 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 207 | measurementsEntry = this->getMeasurements().getParent(*measurementsEntry); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 208 | } |
| 209 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 210 | shared_ptr<PitEntryInfo> pitEntryInfo = pitEntry->getStrategyInfo<PitEntryInfo>(); |
| 211 | if (static_cast<bool>(pitEntryInfo)) { |
| 212 | scheduler::cancel(pitEntryInfo->propagateTimer); |
| 213 | } |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 214 | } |
| 215 | |
| 216 | shared_ptr<NccStrategy::MeasurementsEntryInfo> |
| 217 | NccStrategy::getMeasurementsEntryInfo(shared_ptr<pit::Entry> entry) |
| 218 | { |
| 219 | shared_ptr<measurements::Entry> measurementsEntry = this->getMeasurements().get(*entry); |
| 220 | return this->getMeasurementsEntryInfo(measurementsEntry); |
| 221 | } |
| 222 | |
| 223 | shared_ptr<NccStrategy::MeasurementsEntryInfo> |
| 224 | NccStrategy::getMeasurementsEntryInfo(shared_ptr<measurements::Entry> entry) |
| 225 | { |
| 226 | shared_ptr<MeasurementsEntryInfo> info = entry->getStrategyInfo<MeasurementsEntryInfo>(); |
| 227 | if (static_cast<bool>(info)) { |
| 228 | return info; |
| 229 | } |
| 230 | |
| 231 | info = make_shared<MeasurementsEntryInfo>(); |
| 232 | entry->setStrategyInfo(info); |
| 233 | |
Junxiao Shi | e368d99 | 2014-12-02 23:44:31 -0700 | [diff] [blame] | 234 | shared_ptr<measurements::Entry> parentEntry = this->getMeasurements().getParent(*entry); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 235 | if (static_cast<bool>(parentEntry)) { |
| 236 | shared_ptr<MeasurementsEntryInfo> parentInfo = this->getMeasurementsEntryInfo(parentEntry); |
| 237 | BOOST_ASSERT(static_cast<bool>(parentInfo)); |
| 238 | info->inheritFrom(*parentInfo); |
| 239 | } |
| 240 | |
| 241 | return info; |
| 242 | } |
| 243 | |
| 244 | |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 245 | const time::microseconds NccStrategy::MeasurementsEntryInfo::INITIAL_PREDICTION = |
| 246 | time::microseconds(8192); |
| 247 | const time::microseconds NccStrategy::MeasurementsEntryInfo::MIN_PREDICTION = |
| 248 | time::microseconds(127); |
| 249 | const time::microseconds NccStrategy::MeasurementsEntryInfo::MAX_PREDICTION = |
| 250 | time::microseconds(160000); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 251 | |
| 252 | NccStrategy::MeasurementsEntryInfo::MeasurementsEntryInfo() |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 253 | : prediction(INITIAL_PREDICTION) |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 254 | { |
| 255 | } |
| 256 | |
| 257 | void |
| 258 | NccStrategy::MeasurementsEntryInfo::inheritFrom(const MeasurementsEntryInfo& other) |
| 259 | { |
| 260 | this->operator=(other); |
| 261 | } |
| 262 | |
| 263 | shared_ptr<Face> |
| 264 | NccStrategy::MeasurementsEntryInfo::getBestFace(void) { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 265 | shared_ptr<Face> best = this->bestFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 266 | if (static_cast<bool>(best)) { |
| 267 | return best; |
| 268 | } |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 269 | this->bestFace = best = this->previousFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 270 | return best; |
| 271 | } |
| 272 | |
| 273 | void |
| 274 | NccStrategy::MeasurementsEntryInfo::updateBestFace(const Face& face) { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 275 | if (this->bestFace.expired()) { |
| 276 | this->bestFace = const_cast<Face&>(face).shared_from_this(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 277 | return; |
| 278 | } |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 279 | shared_ptr<Face> bestFace = this->bestFace.lock(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 280 | if (bestFace.get() == &face) { |
| 281 | this->adjustPredictDown(); |
| 282 | } |
| 283 | else { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 284 | this->previousFace = this->bestFace; |
| 285 | this->bestFace = const_cast<Face&>(face).shared_from_this(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 286 | } |
| 287 | } |
| 288 | |
| 289 | void |
| 290 | NccStrategy::MeasurementsEntryInfo::adjustPredictDown() { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 291 | prediction = std::max(MIN_PREDICTION, |
| 292 | time::microseconds(prediction.count() - (prediction.count() >> ADJUST_PREDICT_DOWN_SHIFT))); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | void |
| 296 | NccStrategy::MeasurementsEntryInfo::adjustPredictUp() { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 297 | prediction = std::min(MAX_PREDICTION, |
| 298 | time::microseconds(prediction.count() + (prediction.count() >> ADJUST_PREDICT_UP_SHIFT))); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | void |
| 302 | NccStrategy::MeasurementsEntryInfo::ageBestFace() { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 303 | this->previousFace = this->bestFace; |
| 304 | this->bestFace.reset(); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 305 | } |
| 306 | |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 307 | NccStrategy::PitEntryInfo::~PitEntryInfo() |
| 308 | { |
Junxiao Shi | 1391d61 | 2014-03-27 22:27:20 -0700 | [diff] [blame] | 309 | scheduler::cancel(this->bestFaceTimeout); |
| 310 | scheduler::cancel(this->propagateTimer); |
Junxiao Shi | 0b5fbbb | 2014-02-20 15:54:03 -0700 | [diff] [blame] | 311 | } |
| 312 | |
| 313 | } // namespace fw |
| 314 | } // namespace nfd |