blob: 5eb7a5d856d2fce9ca69164d26d77b4eb274556f [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
21
22#ifndef CCNX_FLOODING_STRATEGY_H
23#define CCNX_FLOODING_STRATEGY_H
24
25#include "ns3/packet.h"
26#include "ns3/callback.h"
27#include "ns3/object.h"
28#include "ns3/log.h"
29
30#include "ccnx-forwarding-strategy.h"
31#include "ccnx.h"
32#include "ccnx-fib.h"
33
34namespace ns3
35{
36
37class CcnxFace;
38class CcnxInterestHeader;
39
40/**
41* \ingroup ccnx
42* \brief Flooding strategy
43*/
44
45class CcnxFloodingStrategy : public CcnxForwardingStrategy
46{
47public:
48 static TypeId GetTypeId (void);
49
50 CcnxFloodingStrategy ();
51
Ilya Moiseenkoed8dda32011-10-28 13:19:41 -070052 bool PropagateInterest (CcnxPitEntryContainer::type::iterator pitEntry,
53 CcnxFibEntryContainer::type::iterator fibEntry,
54 const Ptr<CcnxFace> &incomingFace,
Ilya Moiseenko25f7d4d2011-09-29 18:41:06 -070055 Ptr<CcnxInterestHeader> &header,
56 const Ptr<const Packet> &packet,
57 SendCallback ucb);
58};
59
60} //namespace ns3
61
62#endif /* CCNX_FLOODING_STRATEGY_H */