NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.0: NDN, CCN, CCNx, content centric networks
API Documentation
rib-update.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
26 #ifndef NFD_RIB_RIB_UPDATE_HPP
27 #define NFD_RIB_RIB_UPDATE_HPP
28 
29 #include "common.hpp"
30 #include "route.hpp"
31 
32 namespace nfd {
33 namespace rib {
34 
40 class RibUpdate
41 {
42 public:
43  enum Action {
44  REGISTER = 0,
46 
52  };
53 
54  RibUpdate();
55 
56  RibUpdate&
57  setAction(Action action);
58 
59  Action
60  getAction() const;
61 
62  RibUpdate&
63  setName(const Name& name);
64 
65  const Name&
66  getName() const;
67 
68  RibUpdate&
69  setRoute(const Route& route);
70 
71  const Route&
72  getRoute() const;
73 
74 private:
75  Action m_action;
76  Name m_name;
77  Route m_route;
78 };
79 
80 inline RibUpdate&
82 {
83  m_action = action;
84  return *this;
85 }
86 
87 inline RibUpdate::Action
89 {
90  return m_action;
91 }
92 
93 inline RibUpdate&
95 {
96  m_name = name;
97  return *this;
98 }
99 
100 inline const Name&
102 {
103  return m_name;
104 }
105 
106 inline RibUpdate&
108 {
109  m_route = route;
110  return *this;
111 }
112 
113 inline const Route&
115 {
116  return m_route;
117 }
118 
119 std::ostream&
120 operator<<(std::ostream& os, const RibUpdate::Action action);
121 
122 std::ostream&
123 operator<<(std::ostream& os, const RibUpdate& update);
124 
125 } // namespace rib
126 } // namespace nfd
127 
128 #endif // NFD_RIB_RIB_UPDATE_HPP
RibUpdate & setRoute(const Route &route)
Definition: rib-update.hpp:107
const Route & getRoute() const
Definition: rib-update.hpp:114
std::ostream & operator<<(std::ostream &os, const FibUpdate &update)
Definition: fib-update.hpp:74
const Name & getName() const
Definition: rib-update.hpp:101
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
RibUpdate & setAction(Action action)
Definition: rib-update.hpp:81
represents a route for a name prefix
Definition: route.hpp:38
Name abstraction to represent an absolute name.
Definition: name.hpp:46
RibUpdate & setName(const Name &name)
Definition: rib-update.hpp:94
An update triggered by a face destruction notification.
Definition: rib-update.hpp:51
Action getAction() const
Definition: rib-update.hpp:88