NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
nfd-constants.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2017 Regents of the University of California.
4  *
5  * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6  *
7  * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8  * terms of the GNU Lesser General Public License as published by the Free Software
9  * Foundation, either version 3 of the License, or (at your option) any later version.
10  *
11  * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13  * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14  *
15  * You should have received copies of the GNU General Public License and GNU Lesser
16  * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17  * <http://www.gnu.org/licenses/>.
18  *
19  * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20  */
21 
22 #ifndef NDN_ENCODING_NFD_CONSTANTS_HPP
23 #define NDN_ENCODING_NFD_CONSTANTS_HPP
24 
25 #include "../common.hpp"
26 
27 namespace ndn {
28 namespace nfd {
29 
30 const uint64_t INVALID_FACE_ID = 0;
31 
34 enum FaceScope : uint8_t {
35  FACE_SCOPE_NONE = std::numeric_limits<uint8_t>::max(),
38 };
39 
40 std::ostream&
41 operator<<(std::ostream& os, FaceScope faceScope);
42 
45 enum FacePersistency : uint8_t {
46  FACE_PERSISTENCY_NONE = std::numeric_limits<uint8_t>::max(),
50 };
51 
52 std::ostream&
53 operator<<(std::ostream& os, FacePersistency facePersistency);
54 
57 enum LinkType : uint8_t {
58  LINK_TYPE_NONE = std::numeric_limits<uint8_t>::max(),
62 };
63 
64 std::ostream&
65 operator<<(std::ostream& os, LinkType linkType);
66 
72 };
73 
76 enum FaceEventKind : uint8_t {
82 };
83 
84 std::ostream&
85 operator<<(std::ostream& os, FaceEventKind faceEventKind);
86 
89 enum RouteOrigin : uint16_t {
90  ROUTE_ORIGIN_NONE = std::numeric_limits<uint16_t>::max(),
97 };
98 
104 std::istream&
105 operator>>(std::istream& is, RouteOrigin& routeOrigin);
106 
107 std::ostream&
108 operator<<(std::ostream& os, RouteOrigin routeOrigin);
109 
112 enum RouteFlags : uint64_t {
116 };
117 
118 std::ostream&
119 operator<<(std::ostream& os, RouteFlags routeFlags);
120 
121 } // namespace nfd
122 } // namespace ndn
123 
124 #endif // NDN_ENCODING_NFD_CONSTANTS_HPP
Copyright (c) 2011-2015 Regents of the University of California.
std::istream & operator>>(std::istream &is, RouteOrigin &routeOrigin)
extract RouteOrigin from stream
controls whether the link reliability feature is enabled on a face
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-common.hpp:40
face went UP (from DOWN state)
std::ostream & operator<<(std::ostream &os, FaceScope faceScope)
controls whether local fields are enabled on a face
const uint64_t INVALID_FACE_ID
face went DOWN (from UP state)