NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
strategy-choice-publisher.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_DAEMON_MGMT_STRATEGY_CHOICE_PUBLISHER_HPP
27 #define NFD_DAEMON_MGMT_STRATEGY_CHOICE_PUBLISHER_HPP
28 
30 #include "mgmt/app-face.hpp"
31 
32 namespace nfd {
33 
34 class StrategyChoice;
35 
37 {
38 public:
39  StrategyChoicePublisher(const StrategyChoice& strategyChoice,
40  AppFace& face,
41  const Name& prefix,
42  ndn::KeyChain& keyChain);
43 
44  virtual
46 
47 protected:
48 
49  virtual size_t
50  generate(ndn::EncodingBuffer& outBuffer);
51 
52 private:
53 
54  const StrategyChoice& m_strategyChoice;
55 
56 };
57 
58 } // namespace nfd
59 
60 #endif // NFD_DAEMON_MGMT_STRATEGY_CHOICE_PUBLISHER_HPP
provides a publisher of Status Dataset or other segmented octet stream
represents the Strategy Choice table
virtual size_t generate(ndn::EncodingBuffer &outBuffer)
In a derived class, write the octets into outBuffer.
StrategyChoicePublisher(const StrategyChoice &strategyChoice, AppFace &face, const Name &prefix, ndn::KeyChain &keyChain)
EncodingImpl< EncoderTag > EncodingBuffer
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:38
Name abstraction to represent an absolute name.
Definition: name.hpp:46