blob: 8be12e9ea15214376346ad04899d648fe1751088 [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 *
18 * Author: Ilya Moiseenko <iliamo@cs.ucla.edu>
19 */
20
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070021#ifndef CCNX_FLOODING_STRATEGY_H
22#define CCNX_FLOODING_STRATEGY_H
23
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070024#include "ccnx-forwarding-strategy.h"
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070025
26namespace ns3
27{
28
29class CcnxFace;
30class CcnxInterestHeader;
31
32/**
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080033 * \ingroup ccnx
34 * \brief Flooding strategy
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080035 *
36 * \todo Describe
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080037 */
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070038class CcnxFloodingStrategy : public CcnxForwardingStrategy
39{
40public:
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080041 static TypeId GetTypeId (void);
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080042
43 /**
44 * @brief Default constructor
45 */
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080046 CcnxFloodingStrategy ();
47
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080048 // inherited from CcnxForwardingStrategy
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080049 virtual bool
Alexander Afanasyeva5bbe0e2011-11-22 17:28:39 -080050 PropagateInterest (const CcnxPitEntry &pitEntry,
Alexander Afanasyev4fa5e842011-11-21 13:38:39 -080051 const Ptr<CcnxFace> &incomingFace,
52 Ptr<CcnxInterestHeader> &header,
Alexander Afanasyev09c7deb2011-11-23 14:50:10 -080053 const Ptr<const Packet> &packet);
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070054};
55
56} //namespace ns3
57
58#endif /* CCNX_FLOODING_STRATEGY_H */