blob: 9abe29791b5e09a5a5e7f7ccf7148bf0aacf2313 [file] [log] [blame]
Alexander Afanasyevc74a6022011-08-15 20:01:35 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil -*- */
Alexander Afanasyevab1d5602011-08-17 19:17:18 -07002/*
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>
Ilya Moiseenko172763c2011-10-28 13:21:53 -070019 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070020 */
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070021
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070022#include "ccnx-l3-protocol.h"
23
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070024#include "ns3/packet.h"
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070025#include "ns3/node.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070026#include "ns3/log.h"
27#include "ns3/callback.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070028#include "ns3/uinteger.h"
29#include "ns3/trace-source-accessor.h"
30#include "ns3/object-vector.h"
Alexander Afanasyevcbe92ae2011-12-16 13:06:18 -080031#include "ns3/pointer.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070032#include "ns3/boolean.h"
Alexander Afanasyev07827182011-12-13 01:07:32 -080033#include "ns3/string.h"
Alexander Afanasyev4975f732011-12-20 17:52:19 -080034#include "ns3/simulator.h"
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -070035#include "ns3/random-variable.h"
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070036
Alexander Afanasyevc74a6022011-08-15 20:01:35 -070037#include "ns3/ccnx-header-helper.h"
38
Alexander Afanasyev45b92d42011-08-14 23:11:38 -070039#include "ccnx-face.h"
Alexander Afanasyevc74a6022011-08-15 20:01:35 -070040#include "ccnx-forwarding-strategy.h"
41#include "ccnx-interest-header.h"
42#include "ccnx-content-object-header.h"
43
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -080044#include "ccnx-net-device-face.h"
45
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -070046#include <boost/foreach.hpp>
Alexander Afanasyeva46844b2011-11-21 19:13:26 -080047#include <boost/lambda/lambda.hpp>
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080048#include <boost/lambda/bind.hpp>
Alexander Afanasyeva46844b2011-11-21 19:13:26 -080049
50using namespace boost::tuples;
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080051namespace ll = boost::lambda;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070052
53NS_LOG_COMPONENT_DEFINE ("CcnxL3Protocol");
54
55namespace ns3 {
56
Alexander Afanasyev7112f482011-08-17 14:05:57 -070057const uint16_t CcnxL3Protocol::ETHERNET_FRAME_TYPE = 0x7777;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070058
Alexander Afanasyev07827182011-12-13 01:07:32 -080059
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070060NS_OBJECT_ENSURE_REGISTERED (CcnxL3Protocol);
61
62TypeId
63CcnxL3Protocol::GetTypeId (void)
64{
65 static TypeId tid = TypeId ("ns3::CcnxL3Protocol")
66 .SetParent<Ccnx> ()
Alexander Afanasyev070aa482011-08-20 00:38:25 -070067 .SetGroupName ("Ccnx")
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070068 .AddConstructor<CcnxL3Protocol> ()
Alexander Afanasyevcbe92ae2011-12-16 13:06:18 -080069 .AddAttribute ("FaceList", "List of faces associated with CCNx stack",
70 ObjectVectorValue (),
71 MakeObjectVectorAccessor (&CcnxL3Protocol::m_faces),
72 MakeObjectVectorChecker<CcnxFace> ())
73
Alexander Afanasyevbab81b12012-02-04 14:20:09 -080074 .AddAttribute ("EnableNACKs", "Enabling support of NACKs",
Alexander Afanasyev082dbca2012-02-14 18:43:13 -080075 BooleanValue (false),
Alexander Afanasyevbab81b12012-02-04 14:20:09 -080076 MakeBooleanAccessor (&CcnxL3Protocol::m_nacksEnabled),
77 MakeBooleanChecker ())
Alexander Afanasyevde009992012-02-04 18:54:54 -080078 .AddAttribute ("CacheUnsolicitedData", "Cache overheard data that have not been requested",
79 BooleanValue (false),
80 MakeBooleanAccessor (&CcnxL3Protocol::m_cacheUnsolicitedData),
81 MakeBooleanChecker ())
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070082 ;
83 return tid;
84}
85
86CcnxL3Protocol::CcnxL3Protocol()
Alexander Afanasyevab1d5602011-08-17 19:17:18 -070087: m_faceCounter (0)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070088{
89 NS_LOG_FUNCTION (this);
90}
91
92CcnxL3Protocol::~CcnxL3Protocol ()
93{
94 NS_LOG_FUNCTION (this);
95}
96
Alexander Afanasyev08d984e2011-08-13 19:20:22 -070097/*
98 * This method is called by AddAgregate and completes the aggregation
99 * by setting the node in the ccnx stack
100 */
101void
102CcnxL3Protocol::NotifyNewAggregate ()
103{
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700104 // not really efficient, but this will work only once
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700105 if (m_node == 0)
106 {
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700107 m_node = GetObject<Node> ();
108 if (m_node != 0)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700109 {
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700110 NS_ASSERT_MSG (m_pit != 0 && m_fib != 0 && m_contentStore != 0 && m_forwardingStrategy != 0,
111 "PIT, FIB, and ContentStore should be aggregated before CcnxL3Protocol");
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700112 }
113 }
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700114 if (m_pit == 0)
115 {
116 m_pit = GetObject<CcnxPit> ();
117 }
118 if (m_fib == 0)
119 {
120 m_fib = GetObject<CcnxFib> ();
121 }
122 if (m_forwardingStrategy == 0)
123 {
124 m_forwardingStrategy = GetObject<CcnxForwardingStrategy> ();
125 }
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700126 if (m_contentStore == 0)
127 {
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700128 m_contentStore = GetObject<CcnxContentStore> ();
Alexander Afanasyevd9fecdd2012-06-08 16:22:24 -0700129 }
130
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700131 Object::NotifyNewAggregate ();
132}
133
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700134void
135CcnxL3Protocol::DoDispose (void)
136{
137 NS_LOG_FUNCTION (this);
138
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700139 for (CcnxFaceList::iterator i = m_faces.begin (); i != m_faces.end (); ++i)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700140 {
141 *i = 0;
142 }
Alexander Afanasyev98256102011-08-14 01:00:02 -0700143 m_faces.clear ();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700144 m_node = 0;
Alexander Afanasyevd02a5d62011-11-21 11:01:51 -0800145
146 // Force delete on objects
Alexander Afanasyev18252852011-11-21 13:35:31 -0800147 m_forwardingStrategy = 0; // there is a reference to PIT stored in here
Alexander Afanasyevd02a5d62011-11-21 11:01:51 -0800148 m_pit = 0;
149 m_contentStore = 0;
Alexander Afanasyev18252852011-11-21 13:35:31 -0800150 m_fib = 0;
151
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700152 Object::DoDispose ();
153}
154
155uint32_t
Alexander Afanasyev7112f482011-08-17 14:05:57 -0700156CcnxL3Protocol::AddFace (const Ptr<CcnxFace> &face)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700157{
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700158 NS_LOG_FUNCTION (this << &face);
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700159
Alexander Afanasyevab1d5602011-08-17 19:17:18 -0700160 face->SetId (m_faceCounter); // sets a unique ID of the face. This ID serves only informational purposes
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700161
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700162 // ask face to register in lower-layer stack
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700163 face->RegisterProtocolHandler (MakeCallback (&CcnxL3Protocol::Receive, this));
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700164
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700165 m_faces.push_back (face);
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800166 m_faceCounter++;
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700167 return face->GetId ();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700168}
169
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700170void
171CcnxL3Protocol::RemoveFace (Ptr<CcnxFace> face)
172{
173 // ask face to register in lower-layer stack
174 face->RegisterProtocolHandler (MakeNullCallback<void,const Ptr<CcnxFace>&,const Ptr<const Packet>&> ());
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800175
176 // just to be on a safe side. Do the process in two steps
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800177 std::list<boost::reference_wrapper<const CcnxPitEntry> > entriesToRemoves;
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800178 BOOST_FOREACH (const CcnxPitEntry &pitEntry, *m_pit)
179 {
180 m_pit->modify (m_pit->iterator_to (pitEntry),
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800181 ll::bind (&CcnxPitEntry::RemoveAllReferencesToFace, ll::_1, face));
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800182
183 // If this face is the only for the associated FIB entry, then FIB entry will be removed soon.
184 // Thus, we have to remove the whole PIT entry
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700185 if (pitEntry.m_fibEntry->m_faces.size () == 1 &&
186 pitEntry.m_fibEntry->m_faces.begin ()->m_face == face)
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800187 {
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800188 entriesToRemoves.push_back (boost::cref (pitEntry));
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800189 }
190 }
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800191 BOOST_FOREACH (const CcnxPitEntry &removedEntry, entriesToRemoves)
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800192 {
Alexander Afanasyev4a5c2c12011-12-12 18:50:57 -0800193 m_pit->erase (m_pit->iterator_to (removedEntry));
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -0800194 }
195
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700196 CcnxFaceList::iterator face_it = find (m_faces.begin(), m_faces.end(), face);
197 NS_ASSERT_MSG (face_it != m_faces.end (), "Attempt to remove face that doesn't exist");
198 m_faces.erase (face_it);
199}
200
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700201Ptr<CcnxFace>
Alexander Afanasyev98256102011-08-14 01:00:02 -0700202CcnxL3Protocol::GetFace (uint32_t index) const
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700203{
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700204 BOOST_FOREACH (const Ptr<CcnxFace> &face, m_faces) // this function is not supposed to be called often, so linear search is fine
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700205 {
Alexander Afanasyev56f79ea2011-08-17 23:54:27 -0700206 if (face->GetId () == index)
207 return face;
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700208 }
209 return 0;
210}
211
Alexander Afanasyev52e9aa92011-11-15 20:23:20 -0800212Ptr<CcnxFace>
213CcnxL3Protocol::GetFaceByNetDevice (Ptr<NetDevice> netDevice) const
214{
215 BOOST_FOREACH (const Ptr<CcnxFace> &face, m_faces) // this function is not supposed to be called often, so linear search is fine
216 {
217 Ptr<CcnxNetDeviceFace> netDeviceFace = DynamicCast<CcnxNetDeviceFace> (face);
218 if (netDeviceFace == 0) continue;
219
220 if (netDeviceFace->GetNetDevice () == netDevice)
221 return face;
222 }
223 return 0;
224}
225
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700226uint32_t
Alexander Afanasyev98256102011-08-14 01:00:02 -0700227CcnxL3Protocol::GetNFaces (void) const
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700228{
Alexander Afanasyev98256102011-08-14 01:00:02 -0700229 return m_faces.size ();
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700230}
231
Alexander Afanasyev98256102011-08-14 01:00:02 -0700232// Callback from lower layer
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700233void
Alexander Afanasyev0ab833e2011-08-18 15:49:13 -0700234CcnxL3Protocol::Receive (const Ptr<CcnxFace> &face, const Ptr<const Packet> &p)
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700235{
Alexander Afanasyevd459ec32012-04-30 13:58:20 -0700236 if (!face->IsUp ())
237 return;
238
239 NS_LOG_DEBUG (*p);
240
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700241 NS_LOG_LOGIC ("Packet from face " << *face << " received on node " << m_node->GetId ());
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700242
Alexander Afanasyev45b92d42011-08-14 23:11:38 -0700243 Ptr<Packet> packet = p->Copy (); // give upper layers a rw copy of the packet
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700244 try
245 {
Alexander Afanasyevc5a23e22011-09-07 00:37:36 -0700246 CcnxHeaderHelper::Type type = CcnxHeaderHelper::GetCcnxHeaderType (p);
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700247 switch (type)
248 {
249 case CcnxHeaderHelper::INTEREST:
250 {
251 Ptr<CcnxInterestHeader> header = Create<CcnxInterestHeader> ();
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700252
253 // Deserialization. Exception may be thrown
254 packet->RemoveHeader (*header);
255 NS_ASSERT_MSG (packet->GetSize () == 0, "Payload of Interests should be zero");
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800256
257 if (header->GetNack () > 0)
258 OnNack (face, header, p/*original packet*/);
259 else
260 OnInterest (face, header, p/*original packet*/);
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700261 break;
262 }
263 case CcnxHeaderHelper::CONTENT_OBJECT:
264 {
265 Ptr<CcnxContentObjectHeader> header = Create<CcnxContentObjectHeader> ();
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700266
267 static CcnxContentObjectTail contentObjectTrailer; //there is no data in this object
268
269 // Deserialization. Exception may be thrown
270 packet->RemoveHeader (*header);
271 packet->RemoveTrailer (contentObjectTrailer);
272
273 OnData (face, header, packet/*payload*/, p/*original packet*/);
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700274 break;
275 }
276 }
277
278 // exception will be thrown if packet is not recognized
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700279 }
280 catch (CcnxUnknownHeaderException)
281 {
282 NS_ASSERT_MSG (false, "Unknown CCNx header. Should not happen");
Alexander Afanasyevd459ec32012-04-30 13:58:20 -0700283 NS_LOG_ERROR ("Unknown CCNx header. Should not happen");
284 return;
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700285 }
Alexander Afanasyev98256102011-08-14 01:00:02 -0700286}
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700287
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800288void
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800289CcnxL3Protocol::OnNack (const Ptr<CcnxFace> &incomingFace,
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800290 Ptr<CcnxInterestHeader> &header,
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800291 const Ptr<const Packet> &packet)
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800292{
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800293 NS_LOG_FUNCTION (incomingFace << header << packet);
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800294 m_inNacks (header, incomingFace);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800295
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700296 CcnxPit::iterator pitEntry = m_pit->Lookup (*header);
297 if (pitEntry == m_pit->end ())
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800298 {
299 // somebody is doing something bad
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800300 m_dropNacks (header, NON_DUPLICATED, incomingFace);
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800301 return;
302 }
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800303
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700304 // CcnxPitEntryIncomingFaceContainer::type::iterator inFace = pitEntry->m_incoming.find (incomingFace);
305 CcnxPitEntryOutgoingFaceContainer::type::iterator outFace = pitEntry->m_outgoing.find (incomingFace);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800306
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700307 if (outFace == pitEntry->m_outgoing.end ())
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800308 {
Alexander Afanasyev8f5a9bb2011-12-18 19:49:02 -0800309// NS_ASSERT_MSG (false,
310// "Node " << GetObject<Node> ()->GetId () << ", outgoing entry should exist for face " << boost::cref(*incomingFace) << "\n" <<
311// "size: " << pitEntry.m_outgoing.size ());
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800312
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800313 // m_dropNacks (header, NON_DUPLICATE, incomingFace);
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800314 return;
315 }
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800316
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800317 // This was done in error. Never, never do anything, except normal leakage. This way we ensure that we will not have losses,
318 // at least when there is only one client
319 //
320 // incomingFace->LeakBucketByOnePacket ();
Alexander Afanasyeve67a97f2011-11-29 14:28:59 -0800321
Alexander Afanasyev23d2b542011-12-07 18:54:46 -0800322 NS_LOG_ERROR ("Nack on " << boost::cref(*incomingFace));
323
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700324 m_pit->modify (pitEntry,
Alexander Afanasyev5a595072011-11-25 14:49:07 -0800325 ll::bind (&CcnxPitEntry::SetWaitingInVain, ll::_1, outFace));
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800326
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800327 // If NACK is NACK_GIVEUP_PIT, then neighbor gave up trying to and removed it's PIT entry.
328 // So, if we had an incoming entry to this neighbor, then we can remove it now
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800329
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800330 if (header->GetNack () == CcnxInterestHeader::NACK_GIVEUP_PIT)
331 {
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700332 m_pit->modify (pitEntry,
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800333 ll::bind (&CcnxPitEntry::RemoveIncoming, ll::_1, incomingFace));
334 }
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800335
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700336 m_fib->m_fib.modify (pitEntry->m_fibEntry,
Alexander Afanasyev07827182011-12-13 01:07:32 -0800337 ll::bind (&CcnxFibEntry::UpdateStatus,
338 ll::_1, incomingFace, CcnxFibFaceMetric::NDN_FIB_YELLOW));
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800339
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700340 if (pitEntry->m_incoming.size () == 0) // interest was actually satisfied
Alexander Afanasyev23d2b542011-12-07 18:54:46 -0800341 {
342 // no need to do anything
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800343 m_dropNacks (header, AFTER_SATISFIED, incomingFace);
Alexander Afanasyev23d2b542011-12-07 18:54:46 -0800344 return;
345 }
346
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700347 if (!pitEntry->AreAllOutgoingInVain ()) // not all ougtoing are in vain
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800348 {
Alexander Afanasyev23d2b542011-12-07 18:54:46 -0800349 NS_LOG_DEBUG ("Not all outgoing are in vain");
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800350 // suppress
351 // Don't do anything, we are still expecting data from some other face
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800352 m_dropNacks (header, SUPPRESSED, incomingFace);
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800353 return;
354 }
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800355
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800356 Ptr<Packet> nonNackInterest = Create<Packet> ();
357 header->SetNack (CcnxInterestHeader::NORMAL_INTEREST);
358 nonNackInterest->AddHeader (*header);
359
360 bool propagated = m_forwardingStrategy->
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700361 PropagateInterest (*pitEntry, incomingFace, header, nonNackInterest);
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800362
Alexander Afanasyev23d2b542011-12-07 18:54:46 -0800363 // // ForwardingStrategy will try its best to forward packet to at least one interface.
364 // // If no interests was propagated, then there is not other option for forwarding or
365 // // ForwardingStrategy failed to find it.
Alexander Afanasyeve67a97f2011-11-29 14:28:59 -0800366 if (!propagated)
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800367 {
368 m_dropNacks (header, NO_FACES, incomingFace); // this headers doesn't have NACK flag set
369 GiveUpInterest (pitEntry, header);
370 }
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800371}
372
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700373// Processing Interests
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800374//
375// !!! Key point.
376// !!! All interests should be answerred!!! Either later with data, immediately with data, or immediately with NACK
Alexander Afanasyeva67e28c2011-08-31 21:16:25 -0700377void CcnxL3Protocol::OnInterest (const Ptr<CcnxFace> &incomingFace,
378 Ptr<CcnxInterestHeader> &header,
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700379 const Ptr<const Packet> &packet)
Alexander Afanasyev98256102011-08-14 01:00:02 -0700380{
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800381 m_inInterests (header, incomingFace);
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700382
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700383 CcnxPit::iterator pitEntry = m_pit->Lookup (*header);
384 if (pitEntry == m_pit->end ())
385 {
386 pitEntry = m_pit->Create (*header);
387 }
Ilya Moiseenkod83eb0d2011-11-16 15:23:46 -0800388
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700389 if (pitEntry == m_pit->end ())
390 {
391 // if it is still not created, then give up processing
392 m_dropInterests (header, PIT_LIMIT, incomingFace);
393 return;
394 }
395
396 bool isNew = pitEntry->m_incoming.size () == 0 && pitEntry->m_outgoing.size () == 0;
397 bool isDuplicated = m_pit->CheckIfDuplicate (pitEntry, *header);
Alexander Afanasyev120bf312011-12-19 01:24:47 -0800398
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700399 NS_LOG_FUNCTION (header->GetName () << header->GetNonce () << boost::cref (*incomingFace) << isDuplicated);
400
401 /////////////////////////////////////////////////////////////////////////////////////////
402 /////////////////////////////////////////////////////////////////////////////////////////
403 /////////////////////////////////////////////////////////////////////////////////////////
404 // //
405 // !!!! IMPORTANT CHANGE !!!! Duplicate interests will create incoming face entry !!!! //
406 // //
407 /////////////////////////////////////////////////////////////////////////////////////////
408 /////////////////////////////////////////////////////////////////////////////////////////
409 /////////////////////////////////////////////////////////////////////////////////////////
410
411 // Data is not in cache
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700412 CcnxPitEntry::in_iterator inFace = pitEntry->m_incoming.find (incomingFace);
413 CcnxPitEntry::out_iterator outFace = pitEntry->m_outgoing.find (incomingFace);
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700414
415 bool isRetransmitted = false;
416
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700417 if (inFace != pitEntry->m_incoming.end ())
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700418 {
419 // CcnxPitEntryIncomingFace.m_arrivalTime keeps track arrival time of the first packet... why?
420
421 isRetransmitted = true;
422 // this is almost definitely a retransmission. But should we trust the user on that?
423 }
424 else
425 {
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700426 m_pit->modify (pitEntry,
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700427 ll::var(inFace) = ll::bind (&CcnxPitEntry::AddIncoming, ll::_1, incomingFace));
428 }
429 //////////////////////////////////////////////////////////////////////////////////
430 //////////////////////////////////////////////////////////////////////////////////
431 //////////////////////////////////////////////////////////////////////////////////
432
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800433 if (isDuplicated)
Ilya Moiseenko172763c2011-10-28 13:21:53 -0700434 {
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700435 NS_LOG_DEBUG ("Received duplicatie interest on " << *incomingFace);
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800436 m_dropInterests (header, DUPLICATED, incomingFace);
437
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800438 /**
439 * This condition will handle "routing" loops and also recently satisfied interests.
440 * Every time interest is satisfied, PIT entry (with empty incoming and outgoing faces)
441 * is kept for another small chunk of time.
442 */
Ilya Moiseenko172763c2011-10-28 13:21:53 -0700443
Alexander Afanasyevbab81b12012-02-04 14:20:09 -0800444 if (m_nacksEnabled)
445 {
446 NS_LOG_DEBUG ("Sending NACK_LOOP");
447 header->SetNack (CcnxInterestHeader::NACK_LOOP);
448 Ptr<Packet> nack = Create<Packet> ();
449 nack->AddHeader (*header);
450
451 incomingFace->Send (nack);
452 m_outNacks (header, incomingFace);
453 }
Ilya Moiseenko172763c2011-10-28 13:21:53 -0700454
Alexander Afanasyevcf133f02011-09-06 12:13:48 -0700455 return;
456 }
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800457
458 Ptr<Packet> contentObject;
Alexander Afanasyevc86c2832011-12-23 02:56:22 -0800459 Ptr<const CcnxContentObjectHeader> contentObjectHeader; // used for tracing
460 Ptr<const Packet> payload; // used for tracing
461 tie (contentObject, contentObjectHeader, payload) = m_contentStore->Lookup (header);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800462 if (contentObject != 0)
463 {
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700464 NS_ASSERT (contentObjectHeader != 0);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800465 NS_LOG_LOGIC("Found in cache");
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800466
Alexander Afanasyevd459ec32012-04-30 13:58:20 -0700467 OnDataDelayed (contentObjectHeader, payload, contentObject);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800468 return;
469 }
470
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800471 // update PIT entry lifetime
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700472 m_pit->modify (pitEntry,
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800473 ll::bind (&CcnxPitEntry::UpdateLifetime, ll::_1,
474 header->GetInterestLifetime ()));
475
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700476 if (outFace != pitEntry->m_outgoing.end ())
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800477 {
Alexander Afanasyeve192a2a2012-04-09 14:57:54 -0700478 NS_LOG_DEBUG ("Non duplicate interests from the face we have sent interest to. Don't suppress");
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800479 // got a non-duplicate interest from the face we have sent interest to
480 // Probably, there is no point in waiting data from that face... Not sure yet
481
482 // If we're expecting data from the interface we got the interest from ("producer" asks us for "his own" data)
483 // Mark interface YELLOW, but keep a small hope that data will come eventually.
484
485 // ?? not sure if we need to do that ?? ...
486
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700487 m_fib->m_fib.modify(pitEntry->m_fibEntry,
Alexander Afanasyev07827182011-12-13 01:07:32 -0800488 ll::bind (&CcnxFibEntry::UpdateStatus,
489 ll::_1, incomingFace, CcnxFibFaceMetric::NDN_FIB_YELLOW));
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800490 }
Alexander Afanasyeve192a2a2012-04-09 14:57:54 -0700491 else
492 if (!isNew && !isRetransmitted)
493 {
494 // Suppress this interest if we're still expecting data from some other face
495 NS_LOG_DEBUG ("Suppress interests");
496 m_dropInterests (header, SUPPRESSED, incomingFace);
497 return;
498 }
Alexander Afanasyeva7a2b8b2011-11-28 18:19:09 -0800499
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800500 /////////////////////////////////////////////////////////////////////
501 // Propagate
502 /////////////////////////////////////////////////////////////////////
503
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800504 bool propagated = m_forwardingStrategy->
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700505 PropagateInterest (*pitEntry, incomingFace, header, packet);
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800506
Alexander Afanasyevd459ec32012-04-30 13:58:20 -0700507 if (!propagated && isRetransmitted) //give another chance if retransmitted
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800508 {
509 // increase max number of allowed retransmissions
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700510 m_pit->modify (pitEntry,
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800511 ll::bind (&CcnxPitEntry::IncreaseAllowedRetxCount, ll::_1));
512
513 // try again
514 propagated = m_forwardingStrategy->
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700515 PropagateInterest (*pitEntry, incomingFace, header, packet);
Alexander Afanasyev0a61c342011-12-06 12:48:55 -0800516 }
517
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800518 // ForwardingStrategy will try its best to forward packet to at least one interface.
519 // If no interests was propagated, then there is not other option for forwarding or
520 // ForwardingStrategy failed to find it.
Alexander Afanasyeve67a97f2011-11-29 14:28:59 -0800521 if (!propagated)
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800522 {
Alexander Afanasyev120bf312011-12-19 01:24:47 -0800523 NS_LOG_DEBUG ("Not propagated");
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800524 m_dropInterests (header, NO_FACES, incomingFace);
525 GiveUpInterest (pitEntry, header);
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800526 }
Alexander Afanasyev9d313d42011-11-25 13:36:15 -0800527}
528
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700529void
Alexander Afanasyev7f3e49e2012-04-30 00:17:07 -0700530CcnxL3Protocol::OnDataDelayed (Ptr<const CcnxContentObjectHeader> header,
531 Ptr<const Packet> payload,
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700532 const Ptr<const Packet> &packet)
533{
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700534 // 1. Lookup PIT entry
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700535 CcnxPit::iterator pitEntry = m_pit->Lookup (*header);
536 if (pitEntry != m_pit->end ())
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700537 {
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700538 //satisfy all pending incoming Interests
539 BOOST_FOREACH (const CcnxPitEntryIncomingFace &incoming, pitEntry->m_incoming)
540 {
541 incoming.m_face->Send (packet->Copy ());
542 m_outData (header, payload, false, incoming.m_face);
543 NS_LOG_DEBUG ("Satisfy " << *incoming.m_face);
544
545 // successfull forwarded data trace
546 }
547
548 if (pitEntry->m_incoming.size () > 0)
549 {
550 // All incoming interests are satisfied. Remove them
551 m_pit->modify (pitEntry,
552 ll::bind (&CcnxPitEntry::ClearIncoming, ll::_1));
553
554 // Remove all outgoing faces
555 m_pit->modify (pitEntry,
556 ll::bind (&CcnxPitEntry::ClearOutgoing, ll::_1));
557
558 // Set pruning timout on PIT entry (instead of deleting the record)
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700559 m_pit->MarkErased (pitEntry);
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700560 }
561 }
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700562 else
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700563 {
564 NS_LOG_DEBUG ("Pit entry not found (was satisfied and removed before)");
565 return; // do not process unsoliced data packets
566 }
567}
568
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700569// Processing ContentObjects
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800570void
571CcnxL3Protocol::OnData (const Ptr<CcnxFace> &incomingFace,
572 Ptr<CcnxContentObjectHeader> &header,
573 Ptr<Packet> &payload,
574 const Ptr<const Packet> &packet)
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700575{
Ilya Moiseenko172763c2011-10-28 13:21:53 -0700576
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700577 NS_LOG_FUNCTION (incomingFace << header->GetName () << payload << packet);
Alexander Afanasyevc86c2832011-12-23 02:56:22 -0800578 m_inData (header, payload, incomingFace);
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700579
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700580 // 1. Lookup PIT entry
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700581 CcnxPit::iterator pitEntry = m_pit->Lookup (*header);
582 if (pitEntry != m_pit->end ())
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700583 {
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700584 // Note that with MultiIndex we need to modify entries indirectly
Alexander Afanasyevc74a6022011-08-15 20:01:35 -0700585
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700586 CcnxPitEntry::out_iterator out = pitEntry->m_outgoing.find (incomingFace);
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700587
588 // If we have sent interest for this data via this face, then update stats.
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700589 if (out != pitEntry->m_outgoing.end ())
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700590 {
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700591 m_fib->m_fib.modify (pitEntry->m_fibEntry,
Alexander Afanasyev07827182011-12-13 01:07:32 -0800592 ll::bind (&CcnxFibEntry::UpdateFaceRtt,
593 ll::_1,
594 incomingFace,
595 Simulator::Now () - out->m_sendTime));
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700596 }
597 else
598 {
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800599 // Unsolicited data, but we're interested in it... should we get it?
600 // Potential hole for attacks
Alexander Afanasyeva46844b2011-11-21 19:13:26 -0800601
Alexander Afanasyevde009992012-02-04 18:54:54 -0800602 if (m_cacheUnsolicitedData)
603 {
604 // Optimistically add or update entry in the content store
605 m_contentStore->Add (header, payload);
606 }
607 else
608 {
609 NS_LOG_ERROR ("Node "<< m_node->GetId() <<
610 ". PIT entry for "<< header->GetName ()<<" is valid, "
611 "but outgoing entry for interface "<< boost::cref(*incomingFace) <<" doesn't exist\n");
612 }
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800613 // ignore unsolicited data
614 return;
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700615 }
616
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800617 // Update metric status for the incoming interface in the corresponding FIB entry
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700618 m_fib->m_fib.modify (pitEntry->m_fibEntry,
Alexander Afanasyev07827182011-12-13 01:07:32 -0800619 ll::bind (&CcnxFibEntry::UpdateStatus, ll::_1,
620 incomingFace, CcnxFibFaceMetric::NDN_FIB_GREEN));
Alexander Afanasyev19426ef2011-11-23 20:55:28 -0800621
622 // Add or update entry in the content store
623 m_contentStore->Add (header, payload);
624
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700625 m_pit->modify (pitEntry,
626 ll::bind (&CcnxPitEntry::RemoveIncoming, ll::_1, incomingFace));
627
628 if (pitEntry->m_incoming.size () == 0)
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700629 {
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700630 // Set pruning timout on PIT entry (instead of deleting the record)
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700631 m_pit->MarkErased (pitEntry);
Alexander Afanasyevff8c5d62012-04-25 15:14:51 -0700632 }
633 else
634 {
Alexander Afanasyev3a4a0b32012-06-28 14:14:22 -0700635 OnDataDelayed (header, payload, packet);
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700636 }
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700637 }
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700638 else
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700639 {
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700640 NS_LOG_DEBUG ("Pit entry not found");
Alexander Afanasyevde009992012-02-04 18:54:54 -0800641 if (m_cacheUnsolicitedData)
642 {
643 // Optimistically add or update entry in the content store
644 m_contentStore->Add (header, payload);
645 }
646 else
647 {
648 // Drop data packet if PIT entry is not found
649 // (unsolicited data packets should not "poison" content store)
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700650
Alexander Afanasyevde009992012-02-04 18:54:54 -0800651 //drop dulicated or not requested data packet
652 m_dropData (header, payload, UNSOLICITED, incomingFace);
653 }
Alexander Afanasyev78cf0c92011-09-01 19:57:14 -0700654 return; // do not process unsoliced data packets
655 }
656}
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700657
658void
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700659CcnxL3Protocol::GiveUpInterest (CcnxPit::iterator pitEntry,
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800660 Ptr<CcnxInterestHeader> header)
661{
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700662 NS_LOG_FUNCTION (this);
663
Alexander Afanasyevbab81b12012-02-04 14:20:09 -0800664 if (m_nacksEnabled)
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800665 {
Alexander Afanasyevbab81b12012-02-04 14:20:09 -0800666 Ptr<Packet> packet = Create<Packet> ();
667 header->SetNack (CcnxInterestHeader::NACK_GIVEUP_PIT);
668 packet->AddHeader (*header);
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800669
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700670 BOOST_FOREACH (const CcnxPitEntryIncomingFace &incoming, pitEntry->m_incoming)
Alexander Afanasyevbab81b12012-02-04 14:20:09 -0800671 {
Alexander Afanasyevde009992012-02-04 18:54:54 -0800672 NS_LOG_DEBUG ("Send NACK for " << boost::cref (header->GetName ()) << " to " << boost::cref (*incoming.m_face));
Alexander Afanasyevbab81b12012-02-04 14:20:09 -0800673 incoming.m_face->Send (packet->Copy ());
674
675 m_outNacks (header, incoming.m_face);
676 }
Alexander Afanasyevbab81b12012-02-04 14:20:09 -0800677
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700678 // All incoming interests cannot be satisfied. Remove them
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700679 m_pit->modify (pitEntry,
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700680 ll::bind (&CcnxPitEntry::ClearIncoming, ll::_1));
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800681
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700682 // Remove also outgoing
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700683 m_pit->modify (pitEntry,
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700684 ll::bind (&CcnxPitEntry::ClearOutgoing, ll::_1));
Alexander Afanasyev120bf312011-12-19 01:24:47 -0800685
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700686 // Set pruning timout on PIT entry (instead of deleting the record)
Alexander Afanasyevf034cbd2012-06-29 14:28:31 -0700687 m_pit->MarkErased (pitEntry);
Alexander Afanasyev1aeaf922012-04-23 13:48:09 -0700688 }
Alexander Afanasyevf377b332011-12-16 15:32:12 -0800689}
690
Alexander Afanasyev08d984e2011-08-13 19:20:22 -0700691} //namespace ns3