NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
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(),
36
FACE_SCOPE_NON_LOCAL
= 0,
37
FACE_SCOPE_LOCAL
= 1,
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(),
47
FACE_PERSISTENCY_PERSISTENT
= 0,
48
FACE_PERSISTENCY_ON_DEMAND
= 1,
49
FACE_PERSISTENCY_PERMANENT
= 2,
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(),
59
LINK_TYPE_POINT_TO_POINT
= 0,
60
LINK_TYPE_MULTI_ACCESS
= 1,
61
LINK_TYPE_AD_HOC
= 2,
62
};
63
64
std::ostream&
65
operator<<
(std::ostream& os,
LinkType
linkType);
66
69
enum
FaceFlagBit
{
70
BIT_LOCAL_FIELDS_ENABLED
= 0,
71
BIT_LP_RELIABILITY_ENABLED
= 1,
72
};
73
76
enum
FaceEventKind
: uint8_t {
77
FACE_EVENT_NONE
= 0,
78
FACE_EVENT_CREATED
= 1,
79
FACE_EVENT_DESTROYED
= 2,
80
FACE_EVENT_UP
= 3,
81
FACE_EVENT_DOWN
= 4,
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(),
91
ROUTE_ORIGIN_APP
= 0,
92
ROUTE_ORIGIN_AUTOREG
= 64,
93
ROUTE_ORIGIN_CLIENT
= 65,
94
ROUTE_ORIGIN_AUTOCONF
= 66,
95
ROUTE_ORIGIN_NLSR
= 128,
96
ROUTE_ORIGIN_STATIC
= 255,
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 {
113
ROUTE_FLAGS_NONE
= 0,
114
ROUTE_FLAG_CHILD_INHERIT
= 1,
115
ROUTE_FLAG_CAPTURE
= 2,
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
ndn::nfd::ROUTE_FLAG_CHILD_INHERIT
Definition:
nfd-constants.hpp:114
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::nfd::operator>>
std::istream & operator>>(std::istream &is, RouteOrigin &routeOrigin)
extract RouteOrigin from stream
Definition:
nfd-constants.cpp:99
ndn::nfd::LinkType
LinkType
Definition:
nfd-constants.hpp:57
ndn::nfd::FACE_PERSISTENCY_PERMANENT
face is permanent
Definition:
nfd-constants.hpp:49
ndn::nfd::ROUTE_ORIGIN_NLSR
Definition:
nfd-constants.hpp:95
ndn::nfd::LINK_TYPE_NONE
Definition:
nfd-constants.hpp:58
ndn::nfd::FACE_SCOPE_NON_LOCAL
face is non-local
Definition:
nfd-constants.hpp:36
ndn::nfd::LINK_TYPE_AD_HOC
link is ad hoc
Definition:
nfd-constants.hpp:61
ndn::nfd::ROUTE_ORIGIN_APP
Definition:
nfd-constants.hpp:91
ndn::nfd::LINK_TYPE_POINT_TO_POINT
link is point-to-point
Definition:
nfd-constants.hpp:59
ndn::nfd::FaceFlagBit
FaceFlagBit
Definition:
nfd-constants.hpp:69
ndn::nfd::ROUTE_ORIGIN_STATIC
Definition:
nfd-constants.hpp:96
ndn::nfd::FACE_EVENT_DESTROYED
face was destroyed
Definition:
nfd-constants.hpp:79
ndn::nfd::LINK_TYPE_MULTI_ACCESS
link is multi-access
Definition:
nfd-constants.hpp:60
ndn::nfd::ROUTE_FLAGS_NONE
Definition:
nfd-constants.hpp:113
ndn::nfd::ROUTE_ORIGIN_AUTOREG
Definition:
nfd-constants.hpp:92
ndn::nfd::FacePersistency
FacePersistency
Definition:
nfd-constants.hpp:45
ndn::nfd::FaceScope
FaceScope
Definition:
nfd-constants.hpp:34
ndn::nfd::FACE_PERSISTENCY_NONE
Definition:
nfd-constants.hpp:46
ndn::nfd::BIT_LP_RELIABILITY_ENABLED
controls whether the link reliability feature is enabled on a face
Definition:
nfd-constants.hpp:71
nfd
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-common.hpp:40
ndn::nfd::ROUTE_FLAG_CAPTURE
Definition:
nfd-constants.hpp:115
ndn::nfd::FACE_SCOPE_NONE
Definition:
nfd-constants.hpp:35
ndn::nfd::FACE_EVENT_UP
face went UP (from DOWN state)
Definition:
nfd-constants.hpp:80
ndn::nfd::ROUTE_ORIGIN_CLIENT
Definition:
nfd-constants.hpp:93
ndn::nfd::FaceEventKind
FaceEventKind
Definition:
nfd-constants.hpp:76
ndn::nfd::operator<<
std::ostream & operator<<(std::ostream &os, FaceScope faceScope)
Definition:
nfd-constants.cpp:35
ndn::nfd::FACE_EVENT_NONE
Definition:
nfd-constants.hpp:77
ndn::nfd::FACE_PERSISTENCY_ON_DEMAND
face is on-demand
Definition:
nfd-constants.hpp:48
ndn::nfd::FACE_SCOPE_LOCAL
face is local
Definition:
nfd-constants.hpp:37
ndn::nfd::ROUTE_ORIGIN_AUTOCONF
Definition:
nfd-constants.hpp:94
ndn::nfd::FACE_EVENT_CREATED
face was created
Definition:
nfd-constants.hpp:78
ndn::nfd::RouteOrigin
RouteOrigin
Definition:
nfd-constants.hpp:89
ndn::nfd::RouteFlags
RouteFlags
Definition:
nfd-constants.hpp:112
ndn::nfd::BIT_LOCAL_FIELDS_ENABLED
controls whether local fields are enabled on a face
Definition:
nfd-constants.hpp:70
ndn::nfd::ROUTE_ORIGIN_NONE
Definition:
nfd-constants.hpp:90
ndn::nfd::FACE_PERSISTENCY_PERSISTENT
face is persistent
Definition:
nfd-constants.hpp:47
ndn::nfd::INVALID_FACE_ID
const uint64_t INVALID_FACE_ID
Definition:
nfd-constants.hpp:30
ndn::nfd::FACE_EVENT_DOWN
face went DOWN (from UP state)
Definition:
nfd-constants.hpp:81
ndnSIM
ndn-cxx
src
encoding
nfd-constants.hpp
Generated on Thu Nov 2 2017 03:30:28 for ndnSIM by
1.8.11