blob: 71665c745325a0aafe862b2254913726dcf2208b [file] [log] [blame]
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -07001/* -*- 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 *
Alexander Afanasyev996b4872012-07-17 17:07:56 -070018 * Author: Alexander Afanasyev <alexander.afanasyev@ucla.edu>
19 * Ilya Moiseenko <iliamo@cs.ucla.edu>
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070020 */
21
Alexander Afanasyev996b4872012-07-17 17:07:56 -070022#ifndef NDNSIM_FLOODING_H
23#define NDNSIM_FLOODING_H
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070024
Alexander Afanasyev996b4872012-07-17 17:07:56 -070025#include "nacks.h"
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070026
Alexander Afanasyev996b4872012-07-17 17:07:56 -070027namespace ns3 {
28namespace ndnSIM {
29
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070030/**
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080031 * \ingroup ccnx
32 * \brief Flooding strategy
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080033 *
34 * \todo Describe
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080035 */
Alexander Afanasyev996b4872012-07-17 17:07:56 -070036class Flooding :
37 public Nacks
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070038{
39public:
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080040 static TypeId GetTypeId (void);
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080041
42 /**
43 * @brief Default constructor
44 */
Alexander Afanasyev996b4872012-07-17 17:07:56 -070045 Flooding ();
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080046
Alexander Afanasyev996b4872012-07-17 17:07:56 -070047protected:
48 // inherited from Nacks/CcnxForwardingStrategy
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080049 virtual bool
Alexander Afanasyev996b4872012-07-17 17:07:56 -070050 DoPropagateInterest (const Ptr<CcnxFace> &incomingFace,
Alexander Afanasyevf249a192012-07-18 16:52:51 -070051 Ptr<CcnxInterestHeader> header,
Alexander Afanasyev996b4872012-07-17 17:07:56 -070052 const Ptr<const Packet> &packet,
53 Ptr<CcnxPitEntry> pitEntry);
Alexander Afanasyevbed75692012-04-06 13:01:25 -070054
55private:
Alexander Afanasyev996b4872012-07-17 17:07:56 -070056 typedef Nacks super;
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070057};
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070058
Alexander Afanasyev996b4872012-07-17 17:07:56 -070059} // namespace ndnSIM
60} // namespace ns3
61
62#endif // NDNSIM_FLOODING