Ilya Moiseenko | 25f7d4d | 2011-09-29 18:41:06 -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: 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 | |
| 34 | namespace ns3 |
| 35 | { |
| 36 | |
| 37 | class CcnxFace; |
| 38 | class CcnxInterestHeader; |
| 39 | |
| 40 | /** |
| 41 | * \ingroup ccnx |
| 42 | * \brief Flooding strategy |
| 43 | */ |
| 44 | |
| 45 | class CcnxFloodingStrategy : public CcnxForwardingStrategy |
| 46 | { |
| 47 | public: |
| 48 | static TypeId GetTypeId (void); |
| 49 | |
| 50 | CcnxFloodingStrategy (); |
| 51 | |
| 52 | bool PropagateInterest (const Ptr<CcnxFace> &incomingFace, |
| 53 | Ptr<CcnxInterestHeader> &header, |
| 54 | const Ptr<const Packet> &packet, |
| 55 | SendCallback ucb); |
| 56 | }; |
| 57 | |
| 58 | } //namespace ns3 |
| 59 | |
| 60 | #endif /* CCNX_FLOODING_STRATEGY_H */ |