Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 1 | /* -*- Mode: C++; c-file-style: "gnu"; indent-tabs-mode:nil -*- */ |
| 2 | /* |
| 3 | * Copyright (c) 2011 University of California, Los Angeles |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License version 2 as |
| 7 | * published by the Free Software Foundation; |
| 8 | * |
| 9 | * This program is distributed in the hope that it will be useful, |
| 10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program; if not, write to the Free Software |
| 16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 17 | * |
| 18 | * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | */ |
| 20 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 21 | #ifndef _NDN_FIB_ENTRY_H_ |
| 22 | #define _NDN_FIB_ENTRY_H_ |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 23 | |
| 24 | #include "ns3/ptr.h" |
| 25 | #include "ns3/nstime.h" |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 26 | #include "ns3/ndn-face.h" |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 27 | #include "ns3/ndn-name-components.h" |
Alexander Afanasyev | ea9b3e6 | 2012-08-13 19:02:54 -0700 | [diff] [blame] | 28 | #include "ns3/ndn-limits.h" |
Alexander Afanasyev | e6dc0ac | 2013-02-21 14:00:48 -0800 | [diff] [blame] | 29 | #include "ns3/traced-value.h" |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 30 | |
| 31 | #include <boost/multi_index_container.hpp> |
| 32 | #include <boost/multi_index/tag.hpp> |
| 33 | #include <boost/multi_index/ordered_index.hpp> |
| 34 | #include <boost/multi_index/composite_key.hpp> |
| 35 | #include <boost/multi_index/hashed_index.hpp> |
| 36 | #include <boost/multi_index/random_access_index.hpp> |
| 37 | #include <boost/multi_index/member.hpp> |
| 38 | #include <boost/multi_index/mem_fun.hpp> |
| 39 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 40 | namespace ns3 { |
| 41 | namespace ndn { |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 42 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 43 | class NameComponents; |
| 44 | |
| 45 | namespace fib { |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 46 | |
| 47 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 48 | * \ingroup ndn |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 49 | * \brief Structure holding various parameters associated with a (FibEntry, Face) tuple |
| 50 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 51 | class FaceMetric |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 52 | { |
| 53 | public: |
| 54 | /** |
| 55 | * @brief Color codes for FIB face status |
| 56 | */ |
| 57 | enum Status { NDN_FIB_GREEN = 1, |
| 58 | NDN_FIB_YELLOW = 2, |
| 59 | NDN_FIB_RED = 3 }; |
| 60 | public: |
| 61 | /** |
| 62 | * \brief Metric constructor |
| 63 | * |
| 64 | * \param face Face for which metric |
| 65 | * \param cost Initial value for routing cost |
| 66 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 67 | FaceMetric (Ptr<Face> face, int32_t cost) |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 68 | : m_face (face) |
| 69 | , m_status (NDN_FIB_YELLOW) |
| 70 | , m_routingCost (cost) |
| 71 | , m_sRtt (Seconds (0)) |
| 72 | , m_rttVar (Seconds (0)) |
Alexander Afanasyev | 6b0c88f | 2012-12-01 12:24:27 -0800 | [diff] [blame] | 73 | , m_realDelay (Seconds (0)) |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 74 | { } |
| 75 | |
| 76 | /** |
| 77 | * \brief Comparison operator used by boost::multi_index::identity<> |
| 78 | */ |
| 79 | bool |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 80 | operator< (const FaceMetric &fm) const { return *m_face < *fm.m_face; } // return identity of the face |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 81 | |
| 82 | /** |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 83 | * @brief Comparison between FaceMetric and Face |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 84 | */ |
| 85 | bool |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 86 | operator< (const Ptr<Face> &face) const { return *m_face < *face; } |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 87 | |
| 88 | /** |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 89 | * @brief Return Face associated with FaceMetric |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 90 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 91 | Ptr<Face> |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 92 | GetFace () const { return m_face; } |
| 93 | |
| 94 | /** |
| 95 | * \brief Recalculate smoothed RTT and RTT variation |
| 96 | * \param rttSample RTT sample |
| 97 | */ |
| 98 | void |
| 99 | UpdateRtt (const Time &rttSample); |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 100 | |
| 101 | /** |
| 102 | * @brief Get current status of FIB entry |
| 103 | */ |
| 104 | Status |
| 105 | GetStatus () const |
| 106 | { |
| 107 | return m_status; |
| 108 | } |
| 109 | |
| 110 | /** |
| 111 | * @brief Set current status of FIB entry |
| 112 | */ |
| 113 | void |
| 114 | SetStatus (Status status) |
| 115 | { |
Alexander Afanasyev | e6dc0ac | 2013-02-21 14:00:48 -0800 | [diff] [blame] | 116 | m_status.Set (status); |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 117 | } |
| 118 | |
| 119 | /** |
| 120 | * @brief Get current routing cost |
| 121 | */ |
| 122 | int32_t |
| 123 | GetRoutingCost () const |
| 124 | { |
| 125 | return m_routingCost; |
| 126 | } |
| 127 | |
| 128 | /** |
| 129 | * @brief Set routing cost |
| 130 | */ |
| 131 | void |
| 132 | SetRoutingCost (int32_t routingCost) |
| 133 | { |
| 134 | m_routingCost = routingCost; |
| 135 | } |
| 136 | |
| 137 | /** |
| 138 | * @brief Get real propagation delay to the producer, calculated based on NS-3 p2p link delays |
| 139 | */ |
| 140 | Time |
| 141 | GetRealDelay () const |
| 142 | { |
| 143 | return m_realDelay; |
| 144 | } |
| 145 | |
| 146 | /** |
| 147 | * @brief Set real propagation delay to the producer, calculated based on NS-3 p2p link delays |
| 148 | */ |
| 149 | void |
| 150 | SetRealDelay (Time realDelay) |
| 151 | { |
| 152 | m_realDelay = realDelay; |
| 153 | } |
| 154 | |
Alexander Afanasyev | e6dc0ac | 2013-02-21 14:00:48 -0800 | [diff] [blame] | 155 | /** |
| 156 | * @brief Get direct access to status trace |
| 157 | */ |
| 158 | TracedValue<Status> & |
| 159 | GetStatusTrace () |
| 160 | { |
| 161 | return m_status; |
| 162 | } |
| 163 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 164 | private: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 165 | friend std::ostream& operator<< (std::ostream& os, const FaceMetric &metric); |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 166 | |
| 167 | private: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 168 | Ptr<Face> m_face; ///< Face |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 169 | |
Alexander Afanasyev | e6dc0ac | 2013-02-21 14:00:48 -0800 | [diff] [blame] | 170 | TracedValue<Status> m_status; ///< \brief Status of the next hop: |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 171 | ///< - NDN_FIB_GREEN |
| 172 | ///< - NDN_FIB_YELLOW |
| 173 | ///< - NDN_FIB_RED |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 174 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 175 | int32_t m_routingCost; ///< \brief routing protocol cost (interpretation of the value depends on the underlying routing protocol) |
| 176 | |
| 177 | Time m_sRtt; ///< \brief smoothed round-trip time |
| 178 | Time m_rttVar; ///< \brief round-trip time variation |
Alexander Afanasyev | 6b0c88f | 2012-12-01 12:24:27 -0800 | [diff] [blame] | 179 | |
| 180 | Time m_realDelay; ///< \brief real propagation delay to the producer, calculated based on NS-3 p2p link delays |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 181 | }; |
| 182 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 183 | /// @cond include_hidden |
| 184 | class i_face {}; |
| 185 | class i_metric {}; |
| 186 | class i_nth {}; |
| 187 | /// @endcond |
| 188 | |
| 189 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 190 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 191 | * \ingroup ndn |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 192 | * \brief Typedef for indexed face container of Entry |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 193 | * |
| 194 | * Currently, there are 2 indexes: |
| 195 | * - by face (used to find record and update metric) |
| 196 | * - by metric (face ranking) |
| 197 | * - random access index (for fast lookup on nth face). Order is |
| 198 | * maintained manually to be equal to the 'by metric' order |
| 199 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 200 | struct FaceMetricContainer |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 201 | { |
| 202 | /// @cond include_hidden |
| 203 | typedef boost::multi_index::multi_index_container< |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 204 | FaceMetric, |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 205 | boost::multi_index::indexed_by< |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 206 | // For fast access to elements using Face |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 207 | boost::multi_index::ordered_unique< |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 208 | boost::multi_index::tag<i_face>, |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 209 | boost::multi_index::const_mem_fun<FaceMetric,Ptr<Face>,&FaceMetric::GetFace> |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 210 | >, |
| 211 | |
| 212 | // List of available faces ordered by (status, m_routingCost) |
| 213 | boost::multi_index::ordered_non_unique< |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 214 | boost::multi_index::tag<i_metric>, |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 215 | boost::multi_index::composite_key< |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 216 | FaceMetric, |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 217 | boost::multi_index::const_mem_fun<FaceMetric,FaceMetric::Status,&FaceMetric::GetStatus>, |
| 218 | boost::multi_index::const_mem_fun<FaceMetric,int32_t,&FaceMetric::GetRoutingCost> |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 219 | > |
| 220 | >, |
| 221 | |
| 222 | // To optimize nth candidate selection (sacrifice a little bit space to gain speed) |
| 223 | boost::multi_index::random_access< |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 224 | boost::multi_index::tag<i_nth> |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 225 | > |
| 226 | > |
| 227 | > type; |
| 228 | /// @endcond |
| 229 | }; |
| 230 | |
| 231 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 232 | * \ingroup ndn |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 233 | * \brief Structure for FIB table entry, holding indexed list of |
| 234 | * available faces and their respective metrics |
| 235 | */ |
Alexander Afanasyev | f5c0774 | 2012-10-31 13:13:05 -0700 | [diff] [blame] | 236 | class Entry : public Object |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 237 | { |
| 238 | public: |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 239 | typedef Entry base_type; |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 240 | |
Alexander Afanasyev | 8566f45 | 2012-12-10 15:21:51 -0800 | [diff] [blame] | 241 | public: |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 242 | class NoFaces {}; ///< @brief Exception class for the case when FIB entry is not found |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 243 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 244 | /** |
| 245 | * \brief Constructor |
| 246 | * \param prefix smart pointer to the prefix for the FIB entry |
| 247 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 248 | Entry (const Ptr<const NameComponents> &prefix) |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 249 | : m_prefix (prefix) |
| 250 | , m_needsProbing (false) |
Alexander Afanasyev | ea9b3e6 | 2012-08-13 19:02:54 -0700 | [diff] [blame] | 251 | { |
Alexander Afanasyev | ea9b3e6 | 2012-08-13 19:02:54 -0700 | [diff] [blame] | 252 | } |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 253 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 254 | /** |
| 255 | * \brief Update status of FIB next hop |
| 256 | * \param status Status to set on the FIB entry |
| 257 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 258 | void UpdateStatus (Ptr<Face> face, FaceMetric::Status status); |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 259 | |
| 260 | /** |
| 261 | * \brief Add or update routing metric of FIB next hop |
| 262 | * |
| 263 | * Initial status of the next hop is set to YELLOW |
| 264 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 265 | void AddOrUpdateRoutingMetric (Ptr<Face> face, int32_t metric); |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 266 | |
| 267 | /** |
Alexander Afanasyev | 6b0c88f | 2012-12-01 12:24:27 -0800 | [diff] [blame] | 268 | * \brief Set real delay to the producer |
| 269 | */ |
| 270 | void |
| 271 | SetRealDelayToProducer (Ptr<Face> face, Time delay); |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 272 | |
Alexander Afanasyev | 6b0c88f | 2012-12-01 12:24:27 -0800 | [diff] [blame] | 273 | /** |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 274 | * @brief Invalidate face |
| 275 | * |
| 276 | * Set routing metric on all faces to max and status to RED |
| 277 | */ |
| 278 | void |
| 279 | Invalidate (); |
| 280 | |
| 281 | /** |
| 282 | * @brief Update RTT averages for the face |
| 283 | */ |
| 284 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 285 | UpdateFaceRtt (Ptr<Face> face, const Time &sample); |
Alexander Afanasyev | 06dba7c | 2013-02-21 11:36:26 -0800 | [diff] [blame] | 286 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 287 | /** |
| 288 | * \brief Get prefix for the FIB entry |
| 289 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 290 | const NameComponents& |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 291 | GetPrefix () const { return *m_prefix; } |
| 292 | |
| 293 | /** |
| 294 | * \brief Find "best route" candidate, skipping `skip' first candidates (modulo # of faces) |
| 295 | * |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 296 | * throws Entry::NoFaces if m_faces.size()==0 |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 297 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 298 | const FaceMetric & |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 299 | FindBestCandidate (uint32_t skip = 0) const; |
| 300 | |
| 301 | /** |
| 302 | * @brief Remove record associated with `face` |
| 303 | */ |
| 304 | void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 305 | RemoveFace (const Ptr<Face> &face) |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 306 | { |
| 307 | m_faces.erase (face); |
| 308 | } |
Alexander Afanasyev | ea9b3e6 | 2012-08-13 19:02:54 -0700 | [diff] [blame] | 309 | |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 310 | private: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 311 | friend std::ostream& operator<< (std::ostream& os, const Entry &entry); |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 312 | |
| 313 | public: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 314 | Ptr<const NameComponents> m_prefix; ///< \brief Prefix of the FIB entry |
| 315 | FaceMetricContainer::type m_faces; ///< \brief Indexed list of faces |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 316 | |
Alexander Afanasyev | ea9b3e6 | 2012-08-13 19:02:54 -0700 | [diff] [blame] | 317 | bool m_needsProbing; ///< \brief flag indicating that probing should be performed |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 318 | }; |
| 319 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 320 | std::ostream& operator<< (std::ostream& os, const Entry &entry); |
| 321 | std::ostream& operator<< (std::ostream& os, const FaceMetric &metric); |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 322 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 323 | } // namespace fib |
| 324 | } // namespace ndn |
| 325 | } // namespace ns3 |
Alexander Afanasyev | 78057c3 | 2012-07-06 15:18:46 -0700 | [diff] [blame] | 326 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 327 | #endif // _NDN_FIB_ENTRY_H_ |