Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -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: Alexander Afanasyev <alexander.afanasyev@ucla.edu> |
| 19 | * Ilya Moiseenko <iliamo@cs.ucla.edu> |
| 20 | */ |
| 21 | #ifndef NDNSIM_GREEN_YELLOW_RED_H |
| 22 | #define NDNSIM_GREEN_YELLOW_RED_H |
| 23 | |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 24 | #include "nacks.h" |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 25 | |
| 26 | namespace ns3 { |
| 27 | namespace ndnSIM { |
| 28 | |
| 29 | /** |
| 30 | * \ingroup ccnx |
| 31 | */ |
| 32 | class GreenYellowRed : |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 33 | public Nacks |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 34 | { |
| 35 | public: |
| 36 | static TypeId GetTypeId (void); |
| 37 | |
| 38 | protected: |
| 39 | virtual void |
| 40 | WillSatisfyPendingInterest (const Ptr<CcnxFace> &incomingFace, |
| 41 | Ptr<CcnxPitEntry> pitEntry); |
| 42 | |
| 43 | virtual bool |
| 44 | DoPropagateInterest (const Ptr<CcnxFace> &incomingFace, |
Alexander Afanasyev | f249a19 | 2012-07-18 16:52:51 -0700 | [diff] [blame] | 45 | Ptr<CcnxInterestHeader> header, |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 46 | const Ptr<const Packet> &packet, |
| 47 | Ptr<CcnxPitEntry> pitEntry); |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 48 | virtual void |
| 49 | DidReceiveValidNack (const Ptr<CcnxFace> &incomingFace, |
| 50 | uint32_t nackCode, |
| 51 | Ptr<CcnxPitEntry> pitEntry); |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 52 | |
| 53 | private: |
Alexander Afanasyev | 786936a | 2012-07-17 19:48:15 -0700 | [diff] [blame] | 54 | typedef Nacks super; |
Alexander Afanasyev | 996b487 | 2012-07-17 17:07:56 -0700 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | } // namespace ndnSIM |
| 58 | } // namespace ns3 |
| 59 | |
| 60 | #endif // NDNSIM_GREEN_YELLOW_RED |