Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -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_PIT_ENTRY_H_ |
| 22 | #define _NDN_PIT_ENTRY_H_ |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 23 | |
| 24 | #include "ns3/ptr.h" |
Alexander Afanasyev | 11f7bb4 | 2012-07-09 17:06:30 -0700 | [diff] [blame] | 25 | #include "ns3/simple-ref-count.h" |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 26 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 27 | #include "ns3/ndn-fib.h" |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 28 | |
| 29 | #include "ns3/ndn-pit-entry-incoming-face.h" |
| 30 | #include "ns3/ndn-pit-entry-outgoing-face.h" |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 31 | |
| 32 | #include <boost/multi_index_container.hpp> |
| 33 | #include <boost/multi_index/tag.hpp> |
| 34 | #include <boost/multi_index/ordered_index.hpp> |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 35 | // #include <boost/multi_index/composite_key.hpp> |
| 36 | // #include <boost/multi_index/hashed_index.hpp> |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 37 | #include <boost/multi_index/member.hpp> |
Alexander Afanasyev | 9a98970 | 2012-06-29 17:44:00 -0700 | [diff] [blame] | 38 | // #include <boost/multi_index/mem_fun.hpp> |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 39 | #include <set> |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 40 | |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 41 | namespace ns3 { |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 42 | namespace ndn { |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 43 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 44 | class Pit; |
| 45 | |
| 46 | namespace pit { |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 47 | |
Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame] | 48 | /// @cond include_hidden |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 49 | class i_face {}; |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 50 | class i_retx {}; |
Alexander Afanasyev | 6315ef7 | 2012-06-01 20:56:31 -0700 | [diff] [blame] | 51 | /// @endcond |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 52 | |
| 53 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 54 | * \ingroup ndn |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 55 | * \brief Typedef for indexed face container of PitEntryOutgoingFace |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 56 | * |
| 57 | * Indexes: |
| 58 | * - by face (may be it will be possible to replace with just the std::map) |
| 59 | */ |
Alexander Afanasyev | c202fd9 | 2012-09-03 21:46:00 -0700 | [diff] [blame] | 60 | // struct OutgoingFaceContainer |
| 61 | // { |
| 62 | // /// @cond include_hidden |
| 63 | // typedef boost::multi_index::multi_index_container< |
| 64 | // OutgoingFace, |
| 65 | // boost::multi_index::indexed_by< |
| 66 | // // For fast access to elements using NdnFace |
| 67 | // boost::multi_index::ordered_unique< |
| 68 | // boost::multi_index::tag<i_face>, |
| 69 | // boost::multi_index::member<OutgoingFace, Ptr<Face>, &OutgoingFace::m_face> |
| 70 | // > |
| 71 | // // , |
| 72 | // // boost::multi_index::ordered_non_unique< |
| 73 | // // boost::multi_index::tag<i_retx>, |
| 74 | // // boost::multi_index::member<OutgoingFace, uint32_t, &OutgoingFace::m_retxCount> |
| 75 | // // > |
| 76 | // > |
| 77 | // > type; |
| 78 | // /// @endcond |
| 79 | // }; |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 80 | |
| 81 | |
| 82 | /** |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 83 | * \ingroup ndn |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 84 | * \brief structure for PIT entry |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 85 | * |
| 86 | * All set-methods are virtual, in case index rearrangement is necessary in the derived classes |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 87 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 88 | class Entry : public SimpleRefCount<Entry> |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 89 | { |
| 90 | public: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 91 | typedef std::set< IncomingFace > in_container; ///< @brief incoming faces container type |
Alexander Afanasyev | f034cbd | 2012-06-29 14:28:31 -0700 | [diff] [blame] | 92 | typedef in_container::iterator in_iterator; ///< @brief iterator to incoming faces |
| 93 | |
Alexander Afanasyev | c202fd9 | 2012-09-03 21:46:00 -0700 | [diff] [blame] | 94 | // typedef OutgoingFaceContainer::type out_container; ///< @brief outgoing faces container type |
| 95 | typedef std::set< OutgoingFace > out_container; ///< @brief outgoing faces container type |
Alexander Afanasyev | f034cbd | 2012-06-29 14:28:31 -0700 | [diff] [blame] | 96 | typedef out_container::iterator out_iterator; ///< @brief iterator to outgoing faces |
| 97 | |
| 98 | typedef std::set< uint32_t > nonce_container; ///< @brief nonce container type |
| 99 | |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 100 | /** |
| 101 | * \brief PIT entry constructor |
| 102 | * \param prefix Prefix of the PIT entry |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 103 | * \param offsetTime Relative time to the current moment, representing PIT entry lifetime |
Alexander Afanasyev | c5a23e2 | 2011-09-07 00:37:36 -0700 | [diff] [blame] | 104 | * \param fibEntry A FIB entry associated with the PIT entry |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 105 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 106 | Entry (Pit &container, Ptr<const InterestHeader> header, Ptr<fib::Entry> fibEntry); |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 107 | |
| 108 | /** |
| 109 | * @brief Virtual destructor |
| 110 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 111 | virtual ~Entry () {} |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 112 | |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 113 | /** |
| 114 | * @brief Update lifetime of PIT entry |
| 115 | * |
| 116 | * This function will update PIT entry lifetime to the maximum of the current lifetime and |
| 117 | * the lifetime Simulator::Now () + offsetTime |
| 118 | * |
| 119 | * @param offsetTime Relative time to the current moment, representing PIT entry lifetime |
| 120 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 121 | virtual void |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 122 | UpdateLifetime (const Time &offsetTime); |
Alexander Afanasyev | b4fee8b | 2012-06-06 12:54:26 -0700 | [diff] [blame] | 123 | |
| 124 | /** |
| 125 | * @brief Get prefix of the PIT entry |
| 126 | */ |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 127 | const NameComponents & |
Alexander Afanasyev | 19426ef | 2011-11-23 20:55:28 -0800 | [diff] [blame] | 128 | GetPrefix () const |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 129 | { return *m_prefix; } |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 130 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 131 | /** |
| 132 | * @brief Get current expiration time of the record |
| 133 | * |
| 134 | * @returns current expiration time of the record |
| 135 | */ |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 136 | const Time & |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 137 | GetExpireTime () const |
| 138 | { return m_expireTime; } |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 139 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 140 | /** |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 141 | * @brief Check if nonce `nonce` for the same prefix has already been seen |
| 142 | * |
| 143 | * @param nonce Nonce to check |
| 144 | */ |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 145 | bool |
| 146 | IsNonceSeen (uint32_t nonce) const |
| 147 | { return m_seenNonces.find (nonce) != m_seenNonces.end (); } |
| 148 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 149 | /** |
| 150 | * @brief Add `nonce` to the list of seen nonces |
| 151 | * |
| 152 | * @param nonce nonce to add to the list of seen nonces |
| 153 | * |
| 154 | * All nonces are stored for the lifetime of the PIT entry |
| 155 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 156 | virtual void |
Alexander Afanasyev | a46844b | 2011-11-21 19:13:26 -0800 | [diff] [blame] | 157 | AddSeenNonce (uint32_t nonce) |
| 158 | { m_seenNonces.insert (nonce); } |
| 159 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 160 | /** |
| 161 | * @brief Add `face` to the list of incoming faces |
| 162 | * |
| 163 | * @param face Face to add to the list of incoming faces |
| 164 | * @returns iterator to the added entry |
| 165 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 166 | virtual in_iterator |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 167 | AddIncoming (Ptr<Face> face); |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 168 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 169 | /** |
Alexander Afanasyev | 9d313d4 | 2011-11-25 13:36:15 -0800 | [diff] [blame] | 170 | * @brief Remove incoming entry for face `face` |
| 171 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 172 | virtual void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 173 | RemoveIncoming (Ptr<Face> face); |
Alexander Afanasyev | 9d313d4 | 2011-11-25 13:36:15 -0800 | [diff] [blame] | 174 | |
| 175 | /** |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 176 | * @brief Clear all incoming faces either after all of them were satisfied or NACKed |
| 177 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 178 | virtual void |
Alexander Afanasyev | a5bbe0e | 2011-11-22 17:28:39 -0800 | [diff] [blame] | 179 | ClearIncoming () |
| 180 | { m_incoming.clear (); } |
| 181 | |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 182 | /** |
| 183 | * @brief Add `face` to the list of outgoing faces |
| 184 | * |
| 185 | * @param face Face to add to the list of outgoing faces |
| 186 | * @returns iterator to the added entry |
| 187 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 188 | virtual out_iterator |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 189 | AddOutgoing (Ptr<Face> face); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 190 | |
| 191 | /** |
Alexander Afanasyev | 120bf31 | 2011-12-19 01:24:47 -0800 | [diff] [blame] | 192 | * @brief Clear all incoming faces either after all of them were satisfied or NACKed |
| 193 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 194 | virtual void |
Alexander Afanasyev | 120bf31 | 2011-12-19 01:24:47 -0800 | [diff] [blame] | 195 | ClearOutgoing () |
| 196 | { m_outgoing.clear (); } |
| 197 | |
| 198 | /** |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 199 | * @brief Remove all references to face. |
| 200 | * |
| 201 | * This method should be called before face is completely removed from the stack. |
| 202 | * Face is removed from the lists of incoming and outgoing faces |
| 203 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 204 | virtual void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 205 | RemoveAllReferencesToFace (Ptr<Face> face); |
Alexander Afanasyev | 09c7deb | 2011-11-23 14:50:10 -0800 | [diff] [blame] | 206 | |
Alexander Afanasyev | 5a59507 | 2011-11-25 14:49:07 -0800 | [diff] [blame] | 207 | /** |
| 208 | * @brief Flag outgoing face as hopeless |
| 209 | */ |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 210 | // virtual void |
| 211 | // SetWaitingInVain (out_iterator face); |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 212 | virtual void |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 213 | SetWaitingInVain (Ptr<Face> face); |
Alexander Afanasyev | 5a59507 | 2011-11-25 14:49:07 -0800 | [diff] [blame] | 214 | |
| 215 | /** |
| 216 | * @brief Check if all outgoing faces are NACKed |
| 217 | */ |
| 218 | bool |
| 219 | AreAllOutgoingInVain () const; |
Alexander Afanasyev | a7a2b8b | 2011-11-28 18:19:09 -0800 | [diff] [blame] | 220 | |
Alexander Afanasyev | b4fee8b | 2012-06-06 12:54:26 -0700 | [diff] [blame] | 221 | /** |
Alexander Afanasyev | a7a2b8b | 2011-11-28 18:19:09 -0800 | [diff] [blame] | 222 | * @brief Similar to AreAllOutgoingInVain, but ignores `face` |
| 223 | * \see AreAllOutgoingInVain |
| 224 | **/ |
| 225 | bool |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 226 | AreTherePromisingOutgoingFacesExcept (Ptr<Face> face) const; |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 227 | |
| 228 | /** |
| 229 | * @brief Increase maximum limit of allowed retransmission per outgoing face |
| 230 | */ |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 231 | virtual void |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 232 | IncreaseAllowedRetxCount (); |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 233 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 234 | Ptr<fib::Entry> |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 235 | GetFibEntry () { return m_fibEntry; }; |
| 236 | |
| 237 | const in_container & |
| 238 | GetIncoming () const { return m_incoming; } |
| 239 | |
| 240 | const out_container & |
| 241 | GetOutgoing () const { return m_outgoing; } |
| 242 | |
| 243 | uint32_t |
| 244 | GetMaxRetxCount () const { return m_maxRetxCount; } |
| 245 | |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 246 | private: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 247 | friend std::ostream& operator<< (std::ostream& os, const Entry &entry); |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 248 | |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 249 | protected: |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 250 | Pit &m_container; ///< @brief Reference to the container (to rearrange indexes, if necessary) |
Alexander Afanasyev | 36b4577 | 2012-07-10 16:57:42 -0700 | [diff] [blame] | 251 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 252 | Ptr<const NameComponents> m_prefix; ///< \brief Prefix of the PIT entry |
| 253 | Ptr<fib::Entry> m_fibEntry; ///< \brief FIB entry related to this prefix |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 254 | |
Alexander Afanasyev | f034cbd | 2012-06-29 14:28:31 -0700 | [diff] [blame] | 255 | nonce_container m_seenNonces; ///< \brief map of nonces that were seen for this prefix |
| 256 | in_container m_incoming; ///< \brief container for incoming interests |
| 257 | out_container m_outgoing; ///< \brief container for outgoing interests |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 258 | |
| 259 | Time m_expireTime; ///< \brief Time when PIT entry will be removed |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 260 | |
Alexander Afanasyev | 7f3e49e | 2012-04-30 00:17:07 -0700 | [diff] [blame] | 261 | Time m_lastRetransmission; ///< @brief Last time when number of retransmissions were increased |
Alexander Afanasyev | 0a61c34 | 2011-12-06 12:48:55 -0800 | [diff] [blame] | 262 | uint32_t m_maxRetxCount; ///< @brief Maximum allowed number of retransmissions via outgoing faces |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 263 | }; |
| 264 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 265 | std::ostream& operator<< (std::ostream& os, const Entry &entry); |
Alexander Afanasyev | a95b739 | 2012-03-09 10:54:10 -0800 | [diff] [blame] | 266 | |
Alexander Afanasyev | 2b4c947 | 2012-08-09 15:00:38 -0700 | [diff] [blame] | 267 | } // namespace pit |
| 268 | } // namespace ndn |
Alexander Afanasyev | a98cdd2 | 2011-08-29 17:32:37 -0700 | [diff] [blame] | 269 | } // namespace ns3 |
| 270 | |
Alexander Afanasyev | 4aac557 | 2012-08-09 10:49:55 -0700 | [diff] [blame] | 271 | #endif // _NDN_PIT_ENTRY_H_ |