NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
broadcast-strategy.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_DAEMON_FW_BROADCAST_STRATEGY_HPP
27 #define NFD_DAEMON_FW_BROADCAST_STRATEGY_HPP
28 
29 #include "multicast-strategy.hpp"
30 
31 namespace nfd {
32 namespace fw {
33 
38 {
39 public:
40  BroadcastStrategy(Forwarder& forwarder, const Name& name = STRATEGY_NAME);
41 
42  virtual void
43  afterReceiveInterest(const Face& inFace,
44  const Interest& interest,
45  shared_ptr<fib::Entry> fibEntry,
46  shared_ptr<pit::Entry> pitEntry) DECL_OVERRIDE;
47 
48 public:
49  static const Name STRATEGY_NAME;
50 
51 private:
52  bool m_isFirstUse;
53 };
54 
55 } // namespace fw
56 } // namespace nfd
57 
58 #endif // NFD_DAEMON_FW_BROADCAST_STRATEGY_HPP
virtual void afterReceiveInterest(const Face &inFace, const Interest &interest, shared_ptr< fib::Entry > fibEntry, shared_ptr< pit::Entry > pitEntry) 1
trigger after Interest is received
main class of NFD
Definition: forwarder.hpp:55
represents an Interest packet
Definition: interest.hpp:45
#define DECL_OVERRIDE
expands to &#39;override&#39; if compiler supports &#39;override&#39; specifier, otherwise expands to nothing ...
Definition: common.hpp:50
BroadcastStrategy(Forwarder &forwarder, const Name &name=STRATEGY_NAME)
identical to MulticastStrategy, for backwards compatibility
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
Name abstraction to represent an absolute name.
Definition: name.hpp:46
a forwarding strategy that forwards Interest to all FIB nexthops