blob: 71f49558d894687751871f554f9949ae4c3fdc7c [file] [log] [blame]
Alexander Afanasyev996b4872012-07-17 17:07:56 -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: 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
24#include "ccnx-forwarding-strategy.h"
25
26namespace ns3 {
27namespace ndnSIM {
28
29/**
30 * \ingroup ccnx
31 */
32class GreenYellowRed :
33 public CcnxForwardingStrategy
34{
35public:
36 static TypeId GetTypeId (void);
37
38protected:
39 virtual void
40 WillSatisfyPendingInterest (const Ptr<CcnxFace> &incomingFace,
41 Ptr<CcnxPitEntry> pitEntry);
42
43 virtual bool
44 DoPropagateInterest (const Ptr<CcnxFace> &incomingFace,
45 Ptr<CcnxInterestHeader> &header,
46 const Ptr<const Packet> &packet,
47 Ptr<CcnxPitEntry> pitEntry);
48
49private:
50 typedef CcnxForwardingStrategy super;
51};
52
53} // namespace ndnSIM
54} // namespace ns3
55
56#endif // NDNSIM_GREEN_YELLOW_RED