Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2014-2018, Regents of the University of California, |
Alexander Afanasyev | 7c10b3b | 2015-01-20 12:24:27 -0800 | [diff] [blame] | 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. |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [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/>. |
| 24 | */ |
| 25 | |
| 26 | #include "rib-entry.hpp" |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 27 | #include "core/logger.hpp" |
| 28 | |
Junxiao Shi | 25c6ce4 | 2016-09-09 13:49:59 +0000 | [diff] [blame] | 29 | #include <ndn-cxx/mgmt/nfd/control-command.hpp> |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 30 | |
| 31 | namespace nfd { |
| 32 | namespace rib { |
| 33 | |
Davide Pesavento | a314808 | 2018-04-12 18:21:54 -0400 | [diff] [blame] | 34 | NFD_LOG_INIT(RibEntry); |
| 35 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 36 | RibEntry::RouteList::iterator |
| 37 | RibEntry::findRoute(const Route& route) |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 38 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 39 | return std::find_if(begin(), end(), bind(&compareFaceIdAndOrigin, _1, route)); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 40 | } |
| 41 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 42 | RibEntry::RouteList::const_iterator |
| 43 | RibEntry::findRoute(const Route& route) const |
| 44 | { |
| 45 | return std::find_if(begin(), end(), bind(&compareFaceIdAndOrigin, _1, route)); |
| 46 | } |
| 47 | |
Nick Gordon | 89c4cca | 2016-11-02 15:42:32 +0000 | [diff] [blame] | 48 | std::pair<RibEntry::iterator, bool> |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 49 | RibEntry::insertRoute(const Route& route) |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 50 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 51 | iterator it = findRoute(route); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 52 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 53 | if (it == end()) { |
| 54 | if (route.flags & ndn::nfd::ROUTE_FLAG_CAPTURE) { |
| 55 | m_nRoutesWithCaptureSet++; |
| 56 | } |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 57 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 58 | m_routes.push_back(route); |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 59 | return {std::prev(m_routes.end()), true}; |
| 60 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 61 | |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 62 | return {it, false}; |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 63 | } |
| 64 | |
Vince Lehman | 281ded7 | 2014-08-21 12:17:08 -0500 | [diff] [blame] | 65 | void |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 66 | RibEntry::eraseRoute(const Route& route) |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 67 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 68 | RibEntry::iterator it = findRoute(route); |
| 69 | eraseRoute(it); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | bool |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 73 | RibEntry::hasRoute(const Route& route) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 74 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 75 | RibEntry::const_iterator it = findRoute(route); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 76 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 77 | return it != end(); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | bool |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 81 | RibEntry::hasFaceId(const uint64_t faceId) const |
| 82 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 83 | RibEntry::const_iterator it = std::find_if(begin(), end(), bind(&compareFaceId, _1, faceId)); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 84 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 85 | return it != end(); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 86 | } |
| 87 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 88 | size_t |
| 89 | RibEntry::getNRoutes() const |
| 90 | { |
| 91 | return m_routes.size(); |
| 92 | } |
| 93 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 94 | void |
| 95 | RibEntry::addChild(shared_ptr<RibEntry> child) |
| 96 | { |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 97 | BOOST_ASSERT(!child->getParent()); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 98 | child->setParent(this->shared_from_this()); |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 99 | m_children.push_back(std::move(child)); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | void |
| 103 | RibEntry::removeChild(shared_ptr<RibEntry> child) |
| 104 | { |
| 105 | BOOST_ASSERT(child->getParent().get() == this); |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 106 | child->setParent(nullptr); |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 107 | m_children.remove(child); |
| 108 | } |
| 109 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 110 | RibEntry::RouteList::iterator |
| 111 | RibEntry::eraseRoute(RouteList::iterator route) |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 112 | { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 113 | if (route != m_routes.end()) { |
| 114 | if (route->flags & ndn::nfd::ROUTE_FLAG_CAPTURE) { |
| 115 | m_nRoutesWithCaptureSet--; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 116 | } |
| 117 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 118 | // Cancel any scheduled event |
| 119 | NFD_LOG_TRACE("Cancelling expiration eventId: " << route->getExpirationEvent()); |
| 120 | scheduler::cancel(route->getExpirationEvent()); |
| 121 | |
| 122 | return m_routes.erase(route); |
| 123 | } |
| 124 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 125 | return m_routes.end(); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | void |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 129 | RibEntry::addInheritedRoute(const Route& route) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 130 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 131 | m_inheritedRoutes.push_back(route); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | void |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 135 | RibEntry::removeInheritedRoute(const Route& route) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 136 | { |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 137 | m_inheritedRoutes.remove_if(bind(&compareFaceId, _1, route.faceId)); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 138 | } |
| 139 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 140 | RibEntry::RouteList::const_iterator |
| 141 | RibEntry::findInheritedRoute(const Route& route) const |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 142 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 143 | return std::find_if(m_inheritedRoutes.begin(), m_inheritedRoutes.end(), |
| 144 | bind(&compareFaceId, _1, route.faceId)); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 145 | } |
| 146 | |
| 147 | bool |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 148 | RibEntry::hasInheritedRoute(const Route& route) const |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 149 | { |
Davide Pesavento | e4b2238 | 2018-06-10 14:37:24 -0400 | [diff] [blame] | 150 | return findInheritedRoute(route) != m_inheritedRoutes.end(); |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | bool |
| 154 | RibEntry::hasCapture() const |
| 155 | { |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 156 | return m_nRoutesWithCaptureSet > 0; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 157 | } |
| 158 | |
| 159 | bool |
| 160 | RibEntry::hasChildInheritOnFaceId(uint64_t faceId) const |
| 161 | { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 162 | for (const Route& route : m_routes) { |
| 163 | if (route.faceId == faceId && (route.flags & ndn::nfd::ROUTE_FLAG_CHILD_INHERIT)) { |
| 164 | return true; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 165 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 166 | } |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 167 | |
| 168 | return false; |
| 169 | } |
| 170 | |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 171 | const Route* |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 172 | RibEntry::getRouteWithLowestCostByFaceId(uint64_t faceId) const |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 173 | { |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 174 | const Route* candidate = nullptr; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 175 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 176 | for (const Route& route : m_routes) { |
| 177 | // Matching face ID |
| 178 | if (route.faceId == faceId) { |
| 179 | // If this is the first route with this Face ID found |
| 180 | if (candidate == nullptr) { |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 181 | candidate = &route; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 182 | } |
| 183 | else if (route.cost < candidate->cost) { |
| 184 | // Found a route with a lower cost |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 185 | candidate = &route; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 186 | } |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 187 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 188 | } |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 189 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 190 | return candidate; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 191 | } |
| 192 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 193 | const Route* |
| 194 | RibEntry::getRouteWithSecondLowestCostByFaceId(uint64_t faceId) const |
| 195 | { |
Vince Lehman | 4310d50 | 2016-03-04 11:58:59 -0600 | [diff] [blame] | 196 | std::vector<const Route*> matches; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 197 | |
| 198 | // Copy routes which have faceId |
Vince Lehman | 4310d50 | 2016-03-04 11:58:59 -0600 | [diff] [blame] | 199 | for (const Route& route : m_routes) { |
| 200 | if (route.faceId == faceId) { |
| 201 | matches.push_back(&route); |
| 202 | } |
| 203 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 204 | |
Vince Lehman | 4310d50 | 2016-03-04 11:58:59 -0600 | [diff] [blame] | 205 | // If there are less than 2 routes, there is no second lowest |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 206 | if (matches.size() < 2) { |
| 207 | return nullptr; |
| 208 | } |
| 209 | |
| 210 | // Get second lowest cost |
| 211 | std::nth_element(matches.begin(), matches.begin() + 1, matches.end(), |
Vince Lehman | 4310d50 | 2016-03-04 11:58:59 -0600 | [diff] [blame] | 212 | [] (const Route* lhs, const Route* rhs) { return lhs->cost < rhs->cost; }); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 213 | |
Vince Lehman | 4310d50 | 2016-03-04 11:58:59 -0600 | [diff] [blame] | 214 | return matches.at(1); |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 215 | } |
| 216 | |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 217 | const Route* |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 218 | RibEntry::getRouteWithLowestCostAndChildInheritByFaceId(uint64_t faceId) const |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 219 | { |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 220 | const Route* candidate = nullptr; |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 221 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 222 | for (const Route& route : m_routes) { |
| 223 | // Correct face ID and Child Inherit flag set |
| 224 | if (route.faceId == faceId && |
| 225 | (route.flags & ndn::nfd::ROUTE_FLAG_CHILD_INHERIT) == ndn::nfd::ROUTE_FLAG_CHILD_INHERIT) |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 226 | { |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 227 | // If this is the first route with this Face ID found |
| 228 | if (candidate == nullptr) { |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 229 | candidate = &route; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 230 | } |
| 231 | else if (route.cost < candidate->cost) { |
| 232 | // Found a route with a lower cost |
Vince Lehman | 9dcfc40 | 2015-03-26 03:18:54 -0500 | [diff] [blame] | 233 | candidate = &route; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 234 | } |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 235 | } |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 236 | } |
Vince Lehman | 4387e78 | 2014-06-19 16:57:45 -0500 | [diff] [blame] | 237 | |
Vince Lehman | 218be0a | 2015-01-15 17:25:20 -0600 | [diff] [blame] | 238 | return candidate; |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 239 | } |
| 240 | |
Junxiao Shi | d47cd63 | 2018-09-11 03:10:00 +0000 | [diff] [blame] | 241 | ndn::PrefixAnnouncement |
| 242 | RibEntry::getPrefixAnnouncement(time::milliseconds minExpiration, |
| 243 | time::milliseconds maxExpiration) const |
| 244 | { |
| 245 | const Route* bestAnnRoute = nullptr; |
| 246 | auto entryExpiry = time::steady_clock::TimePoint::min(); |
| 247 | |
| 248 | for (const Route& route : *this) { |
| 249 | if (route.expires) { |
| 250 | entryExpiry = std::max(entryExpiry, *route.expires); |
| 251 | if (route.announcement) { |
| 252 | if (bestAnnRoute == nullptr || *route.expires > *bestAnnRoute->expires) { |
| 253 | bestAnnRoute = &route; |
| 254 | } |
| 255 | } |
| 256 | } |
| 257 | else { |
| 258 | entryExpiry = time::steady_clock::TimePoint::max(); |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | if (bestAnnRoute != nullptr) { |
| 263 | return *bestAnnRoute->announcement; |
| 264 | } |
| 265 | |
| 266 | ndn::PrefixAnnouncement ann; |
| 267 | ann.setAnnouncedName(m_name); |
| 268 | ann.setExpiration(ndn::clamp( |
| 269 | time::duration_cast<time::milliseconds>(entryExpiry - time::steady_clock::now()), |
| 270 | minExpiration, maxExpiration)); |
| 271 | return ann; |
| 272 | } |
| 273 | |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 274 | std::ostream& |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 275 | operator<<(std::ostream& os, const RibEntry& entry) |
| 276 | { |
Syed Obaid | 3313a37 | 2014-07-01 01:31:33 -0500 | [diff] [blame] | 277 | os << "RibEntry {\n"; |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 278 | os << " Name: " << entry.getName() << "\n"; |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 279 | |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 280 | for (const Route& route : entry) { |
Junxiao Shi | 3f21e58 | 2017-05-29 15:26:32 +0000 | [diff] [blame] | 281 | os << " " << route << "\n"; |
Vince Lehman | 76c751c | 2014-11-18 17:36:38 -0600 | [diff] [blame] | 282 | } |
Vince | 12e4946 | 2014-06-09 13:29:32 -0500 | [diff] [blame] | 283 | |
| 284 | os << "}"; |
| 285 | |
| 286 | return os; |
| 287 | } |
| 288 | |
| 289 | } // namespace rib |
| 290 | } // namespace nfd |