Copyright (c) 2011-2015 Regents of the University of California. More...
Namespaces | |
command_interest | |
detail | |
encoding | |
ethernet | |
io | |
literals | |
lp | |
mgmt | |
name | |
net | |
nfd | |
random | |
security | |
signed_interest | |
time | |
tlv | |
Namespace defining NDN Packet Format related constants and procedures. | |
util | |
Classes | |
class | AsHex |
Helper class to convert a number to hexadecimal format, for use with stream insertion operators. More... | |
class | Block |
Represents a TLV element of NDN packet format. More... | |
class | Buffer |
General-purpose automatically managed/resized buffer. More... | |
class | CanonizeProvider |
a CanonizeProvider provides FaceUri canonization functionality for a group of schemes More... | |
class | CanonizeProviderTableInitializer |
class | ConfigFile |
System configuration file for NDN platform. More... | |
class | ContainerWithOnEmptySignal |
A container that emits onEmpty signal when it becomes empty. More... | |
class | Data |
Represents a Data packet. More... | |
struct | Delegation |
represents a delegation More... | |
class | DelegationList |
represents a list of Delegations More... | |
class | DevCanonizeProvider |
class | DigestSha256 |
Represents a signature of DigestSha256 type. More... | |
class | DummyIoService |
class | EtherCanonizeProvider |
class | Exclude |
Represents Exclude selector in NDN Interest. More... | |
class | Face |
Provide a communication channel with local or remote NDN forwarder. More... | |
class | FaceUri |
represents the underlying protocol and address used by a Face More... | |
class | InMemoryStorage |
Represents in-memory storage. More... | |
class | InMemoryStorageEntry |
Represents an in-memory storage entry. More... | |
class | InMemoryStorageFifo |
Provides in-memory storage employing First-In-First-Out (FIFO) replacement policy. More... | |
class | InMemoryStorageLfu |
Provides an in-memory storage with Least Frequently Used (LFU) replacement policy. More... | |
class | InMemoryStorageLru |
Provides in-memory storage employing Least Recently Used (LRU) replacement policy. More... | |
class | InMemoryStoragePersistent |
Provides application cache with persistent storage, of which no replacement policy will be employed. More... | |
class | Interest |
Represents an Interest packet. More... | |
class | InterestFilter |
declares the set of Interests a producer can serve, which starts with a name prefix, plus an optional regular expression More... | |
class | InterestFilterHandle |
A handle of registered Interest filter. More... | |
class | InterestFilterRecord |
associates an InterestFilter with Interest callback More... | |
class | IpHostCanonizeProvider |
class | KeyLocator |
class | KeyParams |
Base class of key parameters. More... | |
class | Link |
represents a Link object More... | |
class | MatchInterestFilterId |
Functor to match InterestFilterId. More... | |
class | MatchPendingInterestId |
Functor to match PendingInterestId. More... | |
class | MatchRegisteredPrefixId |
Functor to match RegisteredPrefixId. More... | |
class | MetadataObject |
Class for RDR-style metadata encoding/decoding. More... | |
class | MetaInfo |
A MetaInfo holds the meta info which is signed inside the data packet. More... | |
class | Name |
Represents an absolute name. More... | |
class | NotificationStreamItem |
concept check for an item in a Notification Stream More... | |
class | OBufferStream |
implements an output stream that constructs ndn::Buffer More... | |
class | ostream_joiner |
class | PacketBase |
base class to allow simple management of packet tags More... | |
class | PendingInterest |
Stores a pending Interest and associated callbacks. More... | |
class | PendingInterestHandle |
A handle of pending Interest. More... | |
class | PrefixAnnouncement |
A prefix announcement object that represents an application's intent of registering a prefix toward itself. More... | |
class | RegexBackrefManager |
class | RegexBackrefMatcher |
class | RegexComponentMatcher |
class | RegexComponentSetMatcher |
class | RegexMatcher |
class | RegexPatternListMatcher |
class | RegexPseudoMatcher |
class | RegexRepeatMatcher |
class | RegexTopMatcher |
class | RegisteredPrefix |
stores information about a prefix registered in NDN forwarder More... | |
class | RegisteredPrefixHandle |
A handle of registered prefix. More... | |
class | Selectors |
Abstraction implementing Interest selectors. More... | |
class | Signature |
Holds SignatureInfo and SignatureValue in a Data packet. More... | |
class | SignatureInfo |
Represents a SignatureInfo TLV element. More... | |
class | SignatureSha256WithEcdsa |
Represents a signature of Sha256WithEcdsa type. More... | |
class | SignatureSha256WithRsa |
Represents a signature of Sha256WithRsa type. More... | |
class | SimplePublicKeyParams |
SimplePublicKeyParams is a template for public keys with only one parameter: size. More... | |
class | SimpleSymmetricKeyParams |
SimpleSymmetricKeyParams is a template for symmetric keys with only one parameter: size. More... | |
class | SimpleTag |
provides a tag type for simple types More... | |
class | StatusDatasetItem |
concept check for an item in a Status Dataset More... | |
class | StringHelperError |
class | Tag |
Base class for packet tags that can hold any arbitrary information. More... | |
class | TagHost |
Base class to store tag information (e.g., inside Interest and Data packets) More... | |
class | TcpCanonizeProvider |
class | Transport |
provides TLV-block delivery service More... | |
class | UdpCanonizeProvider |
class | UdpDevCanonizeProvider |
class | WireDecodable |
a concept check for TLV abstraction with .wireDecode method and constructible from Block More... | |
class | WireEncodable |
a concept check for TLV abstraction with .wireEncode method More... | |
class | WireEncodableWithEncodingBuffer |
a concept check for TLV abstraction with .wireEncode method More... | |
Typedefs | |
using | BufferPtr = shared_ptr< Buffer > |
using | ConstBufferPtr = shared_ptr< const Buffer > |
typedef function< void(const Interest &, const Data &)> | DataCallback |
Callback invoked when expressed Interest gets satisfied with a Data packet. More... | |
typedef function< void(const Interest &, const lp::Nack &)> | NackCallback |
Callback invoked when Nack is sent in response to expressed Interest. More... | |
typedef function< void(const Interest &)> | TimeoutCallback |
Callback invoked when expressed Interest times out. More... | |
typedef function< void(const InterestFilter &, const Interest &)> | InterestCallback |
Callback invoked when incoming Interest matches the specified InterestFilter. More... | |
typedef function< void(const Name &)> | RegisterPrefixSuccessCallback |
Callback invoked when registerPrefix or setInterestFilter command succeeds. More... | |
typedef function< void(const Name &, const std::string &)> | RegisterPrefixFailureCallback |
Callback invoked when registerPrefix or setInterestFilter command fails. More... | |
typedef function< void()> | UnregisterPrefixSuccessCallback |
Callback invoked when unregisterPrefix or unsetInterestFilter command succeeds. More... | |
typedef function< void(const std::string &)> | UnregisterPrefixFailureCallback |
Callback invoked when unregisterPrefix or unsetInterestFilter command fails. More... | |
using | ScopedPendingInterestHandle = detail::ScopedCancelHandle |
A scoped handle of pending Interest. More... | |
using | ScopedRegisteredPrefixHandle = detail::ScopedCancelHandle |
A scoped handle of registered prefix. More... | |
using | ScopedInterestFilterHandle = detail::ScopedCancelHandle |
A scoped handle of registered Interest filter. More... | |
using | PartialName = Name |
Represents an arbitrary sequence of name components. More... | |
using | CanonizeProviders = boost::mpl::vector< UdpCanonizeProvider *, TcpCanonizeProvider *, EtherCanonizeProvider *, DevCanonizeProvider *, UdpDevCanonizeProvider * > |
using | CanonizeProviderTable = std::map< std::string, shared_ptr< CanonizeProvider > > |
typedef SimplePublicKeyParams< detail::RsaKeyParamsInfo > | RsaKeyParams |
RsaKeyParams carries parameters for RSA key. More... | |
typedef SimplePublicKeyParams< detail::EcKeyParamsInfo > | EcKeyParams |
EcKeyParams carries parameters for EC key. More... | |
typedef SimpleSymmetricKeyParams< detail::AesKeyParamsInfo > | AesKeyParams |
AesKeyParams carries parameters for AES key. More... | |
typedef RegexTopMatcher | Regex |
Functions | |
template size_t | Data::wireEncode< encoding::EncoderTag > (EncodingBuffer &, bool) const |
template size_t | Data::wireEncode< encoding::EstimatorTag > (EncodingEstimator &, bool) const |
bool | operator== (const Data &lhs, const Data &rhs) |
std::ostream & | operator<< (std::ostream &os, const Data &data) |
bool | operator!= (const Data &lhs, const Data &rhs) |
template size_t | DelegationList::wireEncode< encoding::EncoderTag > (EncodingBuffer &, uint32_t) const |
template size_t | DelegationList::wireEncode< encoding::EstimatorTag > (EncodingEstimator &, uint32_t) const |
bool | operator== (const DelegationList &lhs, const DelegationList &rhs) |
compare whether two DelegationLists are equal More... | |
std::ostream & | operator<< (std::ostream &os, const DelegationList &dl) |
bool | operator!= (const DelegationList &lhs, const DelegationList &rhs) |
bool | operator== (const Delegation &lhs, const Delegation &rhs) |
bool | operator< (const Delegation &lhs, const Delegation &rhs) |
bool | operator<= (const Delegation &lhs, const Delegation &rhs) |
std::ostream & | operator<< (std::ostream &os, const Delegation &del) |
bool | operator!= (const Delegation &lhs, const Delegation &rhs) |
bool | operator> (const Delegation &lhs, const Delegation &rhs) |
bool | operator>= (const Delegation &lhs, const Delegation &rhs) |
bool | operator== (const Block &lhs, const Block &rhs) |
Compare whether two Blocks have same TLV-TYPE, TLV-LENGTH, and TLV-VALUE. More... | |
std::ostream & | operator<< (std::ostream &os, const Block &block) |
Block | operator""_block (const char *input, std::size_t len) |
Construct a Block from hexadecimal input . More... | |
bool | operator!= (const Block &lhs, const Block &rhs) |
bool | operator== (const Exclude::ExcludeComponent &a, const Exclude::ExcludeComponent &b) |
bool | operator> (const Exclude::ExcludeComponent &a, const Exclude::ExcludeComponent &b) |
std::ostream & | operator<< (std::ostream &os, const Exclude::Range &range) |
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS (Exclude) | |
std::ostream & | operator<< (std::ostream &os, const Exclude &exclude) |
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS (Exclude) | |
template<typename NetPkt > | |
static void | extractLpLocalFields (NetPkt &netPacket, const lp::Packet &lpPacket) |
extract local fields from NDNLPv2 packet and tag onto a network layer packet More... | |
template<typename Field , typename Tag , typename Packet > | |
void | addFieldFromTag (lp::Packet &lpPacket, const Packet &packet) |
template<typename Tag , typename Field , typename Packet > | |
void | addTagFromField (Packet &packet, const lp::Packet &lpPacket) |
std::ostream & | operator<< (std::ostream &os, PendingInterestOrigin origin) |
std::ostream & | operator<< (std::ostream &os, const InterestFilter &filter) |
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS (Interest) | |
bool | operator== (const Interest &lhs, const Interest &rhs) |
std::ostream & | operator<< (std::ostream &os, const Interest &interest) |
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS (Interest) | |
bool | operator!= (const Interest &lhs, const Interest &rhs) |
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS (KeyLocator) | |
std::ostream & | operator<< (std::ostream &os, const KeyLocator &keyLocator) |
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS (KeyLocator) | |
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS (MetaInfo) | |
std::ostream & | operator<< (std::ostream &os, const MetaInfo &info) |
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS (MetaInfo) | |
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS (Name) | |
std::ostream & | operator<< (std::ostream &os, const Name &name) |
Print URI representation of a name. More... | |
std::istream & | operator>> (std::istream &is, Name &name) |
Parse URI from stream as Name. More... | |
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS (Name) | |
bool | operator== (const Name &lhs, const Name &rhs) |
bool | operator!= (const Name &lhs, const Name &rhs) |
bool | operator<= (const Name &lhs, const Name &rhs) |
bool | operator< (const Name &lhs, const Name &rhs) |
bool | operator>= (const Name &lhs, const Name &rhs) |
bool | operator> (const Name &lhs, const Name &rhs) |
std::ostream & | operator<< (std::ostream &os, const FaceUri &uri) |
static const CanonizeProvider * | getCanonizeProvider (const std::string &scheme) |
bool | operator== (const PrefixAnnouncement &lhs, const PrefixAnnouncement &rhs) |
Test whether two prefix announcements has the same name, expiration period, and validity period. More... | |
std::ostream & | operator<< (std::ostream &os, const PrefixAnnouncement &pa) |
Print prefix announcement to a stream. More... | |
bool | operator!= (const PrefixAnnouncement &lhs, const PrefixAnnouncement &rhs) |
std::ostream & | operator<< (std::ostream &os, KeyIdType keyIdType) |
std::ostream & | operator<< (std::ostream &os, KeyType keyType) |
std::ostream & | operator<< (std::ostream &os, KeyClass keyClass) |
std::ostream & | operator<< (std::ostream &os, DigestAlgorithm algorithm) |
std::ostream & | operator<< (std::ostream &os, BlockCipherAlgorithm algorithm) |
std::ostream & | operator<< (std::ostream &os, CipherOperator op) |
std::ostream & | operator<< (std::ostream &os, AclType aclType) |
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS (Selectors) | |
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS (Selectors) | |
NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS (SignatureInfo) | |
bool | operator== (const SignatureInfo &lhs, const SignatureInfo &rhs) |
std::ostream & | operator<< (std::ostream &os, const SignatureInfo &info) |
NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS (SignatureInfo) | |
bool | operator!= (const SignatureInfo &lhs, const SignatureInfo &rhs) |
bool | operator== (const Signature &lhs, const Signature &rhs) |
bool | operator!= (const Signature &lhs, const Signature &rhs) |
template<typename CharT , typename Traits , typename DelimT > | |
ostream_joiner< std::decay_t< DelimT >, CharT, Traits > | make_ostream_joiner (std::basic_ostream< CharT, Traits > &os, DelimT &&delimiter) |
template<typename V > | |
std::string | to_string (const V &v) |
template<typename T , typename Compare > | |
constexpr const T & | clamp (const T &v, const T &lo, const T &hi, Compare comp) |
template<typename T > | |
constexpr const T & | clamp (const T &v, const T &lo, const T &hi) |
std::ostream & | operator<< (std::ostream &os, const RegexMatcher &rm) |
std::ostream & | operator<< (std::ostream &os, const AsHex &hex) |
void | printHex (std::ostream &os, uint64_t num, bool wantUpperCase=false) |
Output the hex representation of num to the output stream os . More... | |
void | printHex (std::ostream &os, const uint8_t *buffer, size_t length, bool wantUpperCase=true) |
Output the hex representation of the bytes in buffer to the output stream os . More... | |
void | printHex (std::ostream &os, const Buffer &buffer, bool wantUpperCase=true) |
Output the hex representation of the bytes in buffer to the output stream os . More... | |
std::string | toHex (const uint8_t *buffer, size_t length, bool wantUpperCase=true) |
Return a string containing the hex representation of the bytes in buffer . More... | |
std::string | toHex (const Buffer &buffer, bool wantUpperCase=true) |
Return a string containing the hex representation of the bytes in buffer . More... | |
shared_ptr< Buffer > | fromHex (const std::string &hexString) |
Convert the hex string to buffer. More... | |
std::string | escape (const std::string &str) |
Percent-encode a string. More... | |
void | escape (std::ostream &os, const char *str, size_t len) |
std::string | unescape (const std::string &str) |
Decode a percent-encoded string. More... | |
void | unescape (std::ostream &os, const char *str, size_t len) |
constexpr char | toHexChar (unsigned int n, bool wantUpperCase=true) noexcept |
Convert (the least significant nibble of) n to the corresponding hex character. More... | |
constexpr int | fromHexChar (char c) noexcept |
Convert the hex character c to an integer in [0, 15], or -1 if it's not a hex character. More... | |
Copyright (c) 2011-2015 Regents of the University of California.
This file is part of ndnSIM. See AUTHORS for complete list of ndnSIM authors and contributors.
ndnSIM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
ndnSIM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with ndnSIM, e.g., in COPYING.md file. If not, see http://www.gnu.org/licenses/.
using ndn::BufferPtr = typedef shared_ptr<Buffer> |
Definition at line 125 of file buffer.hpp.
using ndn::ConstBufferPtr = typedef shared_ptr<const Buffer> |
Definition at line 126 of file buffer.hpp.
typedef function<void(const Interest&, const Data&)> ndn::DataCallback |
typedef function<void(const Interest&, const lp::Nack&)> ndn::NackCallback |
typedef function<void(const Interest&)> ndn::TimeoutCallback |
typedef function<void(const InterestFilter&, const Interest&)> ndn::InterestCallback |
Callback invoked when incoming Interest matches the specified InterestFilter.
typedef function<void(const Name&)> ndn::RegisterPrefixSuccessCallback |
typedef function<void(const Name&, const std::string&)> ndn::RegisterPrefixFailureCallback |
typedef function<void()> ndn::UnregisterPrefixSuccessCallback |
typedef function<void(const std::string&)> ndn::UnregisterPrefixFailureCallback |
using ndn::ScopedPendingInterestHandle = typedef detail::ScopedCancelHandle |
A scoped handle of pending Interest.
Upon destruction of this handle, the pending Interest is canceled automatically. Most commonly, the application keeps a ScopedPendingInterestHandle as a class member field, so that it can cleanup its pending Interest when the class instance is destructed.
using ndn::ScopedRegisteredPrefixHandle = typedef detail::ScopedCancelHandle |
A scoped handle of registered prefix.
Upon destruction of this handle, the prefix is unregistered automatically. Most commonly, the application keeps a ScopedRegisteredPrefixHandle as a class member field, so that it can cleanup its prefix registration when the class instance is destructed. The application will not be notified whether the unregistration was successful.
using ndn::ScopedInterestFilterHandle = typedef detail::ScopedCancelHandle |
A scoped handle of registered Interest filter.
Upon destruction of this handle, the Interest filter is unset automatically. Most commonly, the application keeps a ScopedInterestFilterHandle as a class member field, so that it can cleanup its Interest filter when the class instance is destructed.
using ndn::PartialName = typedef Name |
using ndn::CanonizeProviders = typedef boost::mpl::vector<UdpCanonizeProvider*, TcpCanonizeProvider*, EtherCanonizeProvider*, DevCanonizeProvider*, UdpDevCanonizeProvider*> |
Definition at line 585 of file face-uri.cpp.
using ndn::CanonizeProviderTable = typedef std::map<std::string, shared_ptr<CanonizeProvider> > |
Definition at line 586 of file face-uri.cpp.
RsaKeyParams carries parameters for RSA key.
Definition at line 199 of file key-params.hpp.
EcKeyParams carries parameters for EC key.
Definition at line 202 of file key-params.hpp.
AesKeyParams carries parameters for AES key.
Definition at line 284 of file key-params.hpp.
typedef RegexTopMatcher ndn::Regex |
|
strong |
Indicates where a pending Interest came from.
Enumerator | |
---|---|
APP | Interest was received from this app via Face::expressInterest API. |
FORWARDER |
Definition at line 36 of file pending-interest.hpp.
|
strong |
The type of KeyId component in a key name.
Definition at line 58 of file security-common.hpp.
|
strong |
The type of a cryptographic key.
Definition at line 85 of file security-common.hpp.
|
strong |
Enumerator | |
---|---|
NONE | |
PUBLIC | |
PRIVATE | |
SYMMETRIC |
Definition at line 95 of file security-common.hpp.
|
strong |
Enumerator | |
---|---|
NONE | |
SHA224 | |
SHA256 | |
SHA384 | |
SHA512 | |
BLAKE2B_512 | |
BLAKE2S_256 | |
SHA3_224 | |
SHA3_256 | |
SHA3_384 | |
SHA3_512 |
Definition at line 105 of file security-common.hpp.
|
strong |
Enumerator | |
---|---|
NONE | |
AES_CBC |
Definition at line 122 of file security-common.hpp.
|
strong |
Enumerator | |
---|---|
DECRYPT | |
ENCRYPT |
Definition at line 130 of file security-common.hpp.
|
strong |
Enumerator | |
---|---|
NONE | |
PUBLIC | |
PRIVATE |
Definition at line 138 of file security-common.hpp.
template size_t ndn::Data::wireEncode< encoding::EncoderTag > | ( | EncodingBuffer & | , |
bool | |||
) | const |
template size_t ndn::Data::wireEncode< encoding::EstimatorTag > | ( | EncodingEstimator & | , |
bool | |||
) | const |
Definition at line 313 of file data.cpp.
References ndn::Data::getContent(), ndn::Data::getMetaInfo(), ndn::Data::getName(), and ndn::Data::getSignature().
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const Data & | data | ||
) |
Definition at line 322 of file data.cpp.
References ndn::Data::getContent(), ndn::Data::getMetaInfo(), ndn::Data::getName(), ndn::Data::getSignature(), ndn::Signature::getType(), ndn::Signature::getValue(), and ndn::Block::value_size().
template size_t ndn::DelegationList::wireEncode< encoding::EncoderTag > | ( | EncodingBuffer & | , |
uint32_t | |||
) | const |
template size_t ndn::DelegationList::wireEncode< encoding::EstimatorTag > | ( | EncodingEstimator & | , |
uint32_t | |||
) | const |
bool ndn::operator== | ( | const DelegationList & | lhs, |
const DelegationList & | rhs | ||
) |
compare whether two DelegationLists are equal
Definition at line 230 of file delegation-list.cpp.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const DelegationList & | dl | ||
) |
Definition at line 236 of file delegation-list.cpp.
References ndn::DelegationList::begin(), ndn::DelegationList::end(), and make_ostream_joiner().
|
inline |
Definition at line 251 of file delegation-list.hpp.
bool ndn::operator== | ( | const Delegation & | lhs, |
const Delegation & | rhs | ||
) |
Definition at line 29 of file delegation.cpp.
References ndn::Delegation::name, and ndn::Delegation::preference.
bool ndn::operator< | ( | const Delegation & | lhs, |
const Delegation & | rhs | ||
) |
Definition at line 36 of file delegation.cpp.
References ndn::Delegation::name, and ndn::Delegation::preference.
bool ndn::operator<= | ( | const Delegation & | lhs, |
const Delegation & | rhs | ||
) |
Definition at line 43 of file delegation.cpp.
References ndn::Delegation::name, and ndn::Delegation::preference.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const Delegation & | del | ||
) |
Definition at line 50 of file delegation.cpp.
References ndn::Delegation::name, and ndn::Delegation::preference.
|
inline |
Definition at line 42 of file delegation.hpp.
|
inline |
Definition at line 54 of file delegation.hpp.
|
inline |
Definition at line 60 of file delegation.hpp.
Compare whether two Blocks have same TLV-TYPE, TLV-LENGTH, and TLV-VALUE.
Definition at line 486 of file block.cpp.
References ndn::Block::type(), ndn::Block::value(), and ndn::Block::value_size().
std::ostream& ndn::operator<< | ( | std::ostream & | os, |
const Block & | block | ||
) |
Default-constructed block is printed as: [invalid]
. Zero-length block is printed as: TT[empty]
, where TT is TLV-TYPE in decimal. Non-zero-length block on which Block::parse
is not called is printed as: TT[LL]=VVVV
, where LL is TLV-LENGTH in decimal, and VVVV is TLV-VALUE is hexadecimal. Block on which Block::parse
has been called in printed as: TT[LL]={SUB,SUB}
, where SUB is a sub-element printed using this format.
Definition at line 495 of file block.cpp.
References ndn::Block::elements_begin(), ndn::Block::elements_end(), ndn::Block::empty(), ndn::Block::m_elements, make_ostream_joiner(), printHex(), ndn::Block::type(), ndn::Block::value(), and ndn::Block::value_size().
Block ndn::operator""_block | ( | const char * | input, |
std::size_t | len | ||
) |
Construct a Block
from hexadecimal input
.
input | a string containing hexadecimal bytes and comments. 0-9 and upper-case A-F are input; all other characters are comments. |
len | length of input . |
std::invalid_argument | input is empty or has odd number of hexadecimal digits. |
tlv::Error | input cannot be parsed into valid Block . |
Example
Definition at line 522 of file block.cpp.
References ndn::OBufferStream::buf(), ndn::security::transform::hexDecode(), and ndn::security::transform::streamSink().
bool ndn::operator== | ( | const Exclude::ExcludeComponent & | a, |
const Exclude::ExcludeComponent & | b | ||
) |
Definition at line 45 of file exclude.cpp.
References ndn::Exclude::ExcludeComponent::component, and ndn::Exclude::ExcludeComponent::isNegInf.
bool ndn::operator> | ( | const Exclude::ExcludeComponent & | a, |
const Exclude::ExcludeComponent & | b | ||
) |
Definition at line 52 of file exclude.cpp.
References ndn::Exclude::ExcludeComponent::component, and ndn::Exclude::ExcludeComponent::isNegInf.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const Exclude::Range & | range | ||
) |
Definition at line 81 of file exclude.cpp.
References ndn::Exclude::Range::from, ndn::Exclude::Range::fromInfinity, ndn::Exclude::Range::isSingular(), ndn::Exclude::Range::to, and ndn::Exclude::Range::toInfinity.
ndn::NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS | ( | Exclude | ) |
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const Exclude & | exclude | ||
) |
Definition at line 332 of file exclude.cpp.
References make_ostream_joiner().
ndn::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS | ( | Exclude | ) |
|
static |
extract local fields from NDNLPv2 packet and tag onto a network layer packet
Definition at line 294 of file face.cpp.
References ndn::lp::Packet::get(), and ndn::lp::Packet::has().
void ndn::addFieldFromTag | ( | lp::Packet & | lpPacket, |
const Packet & | packet | ||
) |
Definition at line 32 of file lp-field-tag.hpp.
References ndn::lp::Packet::add().
void ndn::addTagFromField | ( | Packet & | packet, |
const lp::Packet & | lpPacket | ||
) |
Definition at line 42 of file lp-field-tag.hpp.
References ndn::lp::Packet::get(), and ndn::lp::Packet::has().
std::ostream& ndn::operator<< | ( | std::ostream & | os, |
PendingInterestOrigin | origin | ||
) |
Definition at line 43 of file pending-interest.hpp.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const InterestFilter & | filter | ||
) |
Definition at line 66 of file interest-filter.cpp.
References ndn::InterestFilter::getPrefix(), ndn::InterestFilter::getRegexFilter(), and ndn::InterestFilter::hasRegexFilter().
ndn::NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS | ( | Interest | ) |
Definition at line 628 of file interest.cpp.
References ndn::Interest::wireEncode().
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const Interest & | interest | ||
) |
Definition at line 643 of file interest.cpp.
References DEFAULT_CHILD_SELECTOR, DEFAULT_INTEREST_LIFETIME, ndn::Exclude::empty(), ndn::Interest::getChildSelector(), ndn::Interest::getExclude(), ndn::Interest::getInterestLifetime(), ndn::Interest::getMaxSuffixComponents(), ndn::Interest::getMinSuffixComponents(), ndn::Interest::getMustBeFresh(), ndn::Interest::getName(), ndn::Interest::getNonce(), and ndn::Interest::hasNonce().
ndn::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS | ( | Interest | ) |
Definition at line 500 of file interest.hpp.
ndn::NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS | ( | KeyLocator | ) |
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const KeyLocator & | keyLocator | ||
) |
Definition at line 190 of file key-locator.cpp.
References ndn::KeyLocator::getKeyDigest(), ndn::KeyLocator::getName(), ndn::KeyLocator::getType(), ndn::KeyLocator::KeyLocator_KeyDigest, ndn::KeyLocator::KeyLocator_Name, ndn::KeyLocator::KeyLocator_None, ndn::KeyLocator::KeyLocator_Unknown, toHex(), ndn::Block::value(), and ndn::Block::value_size().
ndn::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS | ( | KeyLocator | ) |
ndn::NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS | ( | MetaInfo | ) |
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const MetaInfo & | info | ||
) |
Definition at line 228 of file meta-info.cpp.
References ndn::MetaInfo::getAppMetaInfo(), ndn::MetaInfo::getFinalBlock(), ndn::MetaInfo::getFreshnessPeriod(), and ndn::MetaInfo::getType().
ndn::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS | ( | MetaInfo | ) |
ndn::NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS | ( | Name | ) |
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const Name & | name | ||
) |
Print URI representation of a name.
std::istream & ndn::operator>> | ( | std::istream & | is, |
Name & | name | ||
) |
ndn::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS | ( | Name | ) |
Definition at line 543 of file name.hpp.
References ndn::Name::equals().
Definition at line 549 of file name.hpp.
References ndn::Name::equals().
Definition at line 555 of file name.hpp.
References ndn::Name::compare().
Definition at line 561 of file name.hpp.
References ndn::Name::compare().
Definition at line 567 of file name.hpp.
References ndn::Name::compare().
Definition at line 573 of file name.hpp.
References ndn::Name::compare().
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const FaceUri & | uri | ||
) |
Definition at line 212 of file face-uri.cpp.
|
static |
Definition at line 616 of file face-uri.cpp.
Referenced by ndn::FaceUri::canCanonize(), ndn::FaceUri::canonize(), and ndn::FaceUri::isCanonical().
bool ndn::operator== | ( | const PrefixAnnouncement & | lhs, |
const PrefixAnnouncement & | rhs | ||
) |
Test whether two prefix announcements has the same name, expiration period, and validity period.
Definition at line 121 of file prefix-announcement.cpp.
References ndn::PrefixAnnouncement::getAnnouncedName(), ndn::PrefixAnnouncement::getExpiration(), and ndn::PrefixAnnouncement::getValidityPeriod().
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const PrefixAnnouncement & | pa | ||
) |
Print prefix announcement to a stream.
This string is for debugging purpose. Its syntax is not public API.
Definition at line 129 of file prefix-announcement.cpp.
References ndn::PrefixAnnouncement::getAnnouncedName(), ndn::PrefixAnnouncement::getExpiration(), and ndn::PrefixAnnouncement::getValidityPeriod().
|
inline |
Definition at line 133 of file prefix-announcement.hpp.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
KeyIdType | keyIdType | ||
) |
Definition at line 29 of file security-common.cpp.
References RANDOM, SHA256, and USER_SPECIFIED.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
KeyType | keyType | ||
) |
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
KeyClass | keyClass | ||
) |
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
DigestAlgorithm | algorithm | ||
) |
Definition at line 75 of file security-common.cpp.
References BLAKE2B_512, BLAKE2S_256, NONE, SHA224, SHA256, SHA384, SHA3_224, SHA3_256, SHA3_384, SHA3_512, and SHA512.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
BlockCipherAlgorithm | algorithm | ||
) |
Definition at line 105 of file security-common.cpp.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
CipherOperator | op | ||
) |
Definition at line 117 of file security-common.cpp.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
AclType | aclType | ||
) |
Definition at line 129 of file security-common.cpp.
ndn::NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS | ( | Selectors | ) |
ndn::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS | ( | Selectors | ) |
ndn::NDN_CXX_DEFINE_WIRE_ENCODE_INSTANTIATIONS | ( | SignatureInfo | ) |
bool ndn::operator== | ( | const SignatureInfo & | lhs, |
const SignatureInfo & | rhs | ||
) |
Definition at line 221 of file signature-info.cpp.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const SignatureInfo & | info | ||
) |
Definition at line 230 of file signature-info.cpp.
References ndn::SignatureInfo::getKeyLocator(), ndn::SignatureInfo::getSignatureType(), and ndn::SignatureInfo::hasKeyLocator().
ndn::NDN_CXX_DECLARE_WIRE_ENCODE_INSTANTIATIONS | ( | SignatureInfo | ) |
|
inline |
Definition at line 168 of file signature-info.hpp.
Definition at line 68 of file signature.cpp.
References ndn::Signature::getSignatureInfo(), and ndn::Signature::getValue().
Definition at line 158 of file signature.hpp.
|
inline |
Definition at line 117 of file backports-ostream-joiner.hpp.
Referenced by ndn::nfd::operator<<(), operator<<(), and nfd::printLogModules().
|
inline |
Definition at line 67 of file backports.hpp.
Referenced by nfd::fw::asf::AsfStrategy::AsfStrategy(), nfd::fw::BestRouteStrategy::BestRouteStrategy(), nfd::fw::BestRouteStrategy2::BestRouteStrategy2(), ndn::security::v2::validator_config::Rule::check(), ndn::name::detail::Sha256ComponentType::check(), nfd::ethernet::checkFrameHeader(), ndn::detail::RsaKeyParamsInfo::checkKeySize(), ndn::detail::EcKeyParamsInfo::checkKeySize(), ndn::detail::AesKeyParamsInfo::checkKeySize(), ndn::lp::DecodeHelper< TlvType, EmptyValue >::decode(), ndn::lp::DecodeHelper< TlvType, uint64_t >::decode(), ndn::lp::DecodeHelper< TlvType, std::pair< Buffer::const_iterator, Buffer::const_iterator > >::decode(), ndn::lp::FieldDecl< LOCATION, VALUE, TYPE, REPEATABLE, DECODER_TAG, ENCODER_TAG >::decode(), ndn::security::transform::PrivateKey::decrypt(), ndn::DigestSha256::DigestSha256(), nfd::PrivilegeHelper::drop(), nfd::rib::RibManager::enableLocalFields(), ndn::security::transform::PublicKey::encrypt(), ndn::FaceUri::FaceUri(), ndn::name::Component::fromEscapedString(), ndn::FaceUri::fromFd(), ndn::FaceUri::fromUdpDev(), ndn::random::generateSecureBytes(), ndn::Block::get(), ndn::SignatureInfo::getTypeSpecificTlv(), ndn::net::NetlinkSocket::joinGroup(), ndn::security::v2::validator_config::ValidationPolicyConfig::load(), main(), ndn::security::v2::validator_config::Rule::match(), nfd::fw::MulticastStrategy::MulticastStrategy(), nfd::fw::NccStrategy::NccStrategy(), ndn::net::NetlinkSocket::nlmsgTypeToString(), ndn::net::GenlSocket::nlmsgTypeToString(), ndn::net::NetlinkSocket::open(), ndn::util::operator<<(), nfd::strategy_choice::operator<<(), nfd::ConfigFile::parse(), ndn::Block::parse(), ndn::PrefixAnnouncement::PrefixAnnouncement(), ndn::encoding::readNonNegativeIntegerAs(), nfd::fw::SelfLearningStrategy::SelfLearningStrategy(), nfd::fw::asf::ProbingModule::setProbingInterval(), ndn::Signature::setValue(), ndn::SignatureSha256WithEcdsa::SignatureSha256WithEcdsa(), ndn::SignatureSha256WithRsa::SignatureSha256WithRsa(), ndn::lp::Packet::wireDecode(), ndn::nfd::CsInfo::wireDecode(), ndn::lp::PrefixAnnouncementHeader::wireDecode(), ndn::mgmt::ControlResponse::wireDecode(), ndn::nfd::NextHopRecord::wireDecode(), ndn::SignatureInfo::wireDecode(), ndn::DelegationList::wireDecode(), ndn::Interest::wireDecode(), ndn::Data::wireDecode(), ndn::nfd::Route::wireDecode(), ndn::nfd::FibEntry::wireDecode(), ndn::nfd::RibEntry::wireDecode(), and ndn::DelegationList::wireEncode().
constexpr const T& ndn::clamp | ( | const T & | v, |
const T & | lo, | ||
const T & | hi, | ||
Compare | comp | ||
) |
Definition at line 78 of file backports.hpp.
Referenced by ndn::util::RttEstimator::addMeasurement(), ndn::util::RttEstimator::backoffRto(), and nfd::rib::RibEntry::getPrefixAnnouncement().
constexpr const T& ndn::clamp | ( | const T & | v, |
const T & | lo, | ||
const T & | hi | ||
) |
Definition at line 85 of file backports.hpp.
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const RegexMatcher & | rm | ||
) |
Definition at line 75 of file regex-matcher.cpp.
References ndn::RegexMatcher::getExpr().
std::ostream & ndn::operator<< | ( | std::ostream & | os, |
const AsHex & | hex | ||
) |
Definition at line 35 of file string-helper.cpp.
References printHex().
void ndn::printHex | ( | std::ostream & | os, |
uint64_t | num, | ||
bool | wantUpperCase = false |
||
) |
Output the hex representation of num
to the output stream os
.
os | Output stream |
num | Number to print in hexadecimal format |
wantUpperCase | if true, print uppercase hex chars; the default is to use lowercase |
The output string is a continuous sequence of hex characters without any whitespace separators.
Definition at line 42 of file string-helper.cpp.
Referenced by ndn::util::operator<<(), operator<<(), printHex(), toHex(), and ndn::name::detail::Sha256ComponentType::writeUri().
void ndn::printHex | ( | std::ostream & | os, |
const uint8_t * | buffer, | ||
size_t | length, | ||
bool | wantUpperCase = true |
||
) |
Output the hex representation of the bytes in buffer
to the output stream os
.
os | Output stream |
buffer | Pointer to an array of bytes |
length | Size of the array |
wantUpperCase | if true (the default) print uppercase hex chars |
Examples:
Each octet is always represented as two hex characters ("00" for octet==0).
The output string is a continuous sequence of hex characters without any whitespace separators.
Definition at line 53 of file string-helper.cpp.
References ndn::security::transform::hexEncode(), and ndn::security::transform::streamSink().
void ndn::printHex | ( | std::ostream & | os, |
const Buffer & | buffer, | ||
bool | wantUpperCase = true |
||
) |
Output the hex representation of the bytes in buffer
to the output stream os
.
os | Output stream |
buffer | Buffer of bytes to print in hexadecimal format |
wantUpperCase | if true (the default) print uppercase hex chars |
Definition at line 61 of file string-helper.cpp.
References printHex().
std::string ndn::toHex | ( | const uint8_t * | buffer, |
size_t | length, | ||
bool | wantUpperCase = true |
||
) |
Return a string containing the hex representation of the bytes in buffer
.
buffer | Pointer to an array of bytes |
length | Size of the array |
wantUpperCase | if true (the default) use uppercase hex chars |
Examples:
Each octet is always represented as two hex characters ("00" for octet==0).
The output string is a continuous sequence of hex characters without any whitespace separators.
Definition at line 67 of file string-helper.cpp.
References printHex().
Referenced by operator<<(), toHex(), and ndn::util::Sha256::toString().
std::string ndn::toHex | ( | const Buffer & | buffer, |
bool | wantUpperCase = true |
||
) |
Return a string containing the hex representation of the bytes in buffer
.
buffer | Buffer of bytes to convert to hexadecimal format |
wantUpperCase | if true (the default) use uppercase hex chars |
Definition at line 75 of file string-helper.cpp.
References toHex().
shared_ptr< Buffer > ndn::fromHex | ( | const std::string & | hexString | ) |
Convert the hex string to buffer.
hexString | sequence of pairs of hex numbers (lower and upper case can be mixed) without any whitespace separators (e.g., "48656C6C6F2C20776F726C6421") |
StringHelperError | if input is invalid |
Definition at line 81 of file string-helper.cpp.
References ndn::OBufferStream::buf(), ndn::security::transform::hexDecode(), and ndn::security::transform::streamSink().
Referenced by ndn::name::detail::Sha256ComponentType::parseAltUriValue().
std::string ndn::escape | ( | const std::string & | str | ) |
Percent-encode a string.
This function will encode all characters that are not one of the following: ALPHA ("a" to "z" and "A" to "Z") / DIGIT (0 to 9) / "-" / "." / "_" / "~"
The hex encoding uses the numbers 0-9 and the uppercase letters A-F.
Examples:
Definition at line 97 of file string-helper.cpp.
Referenced by ndn::name::detail::ComponentType::writeUriEscapedValue().
void ndn::escape | ( | std::ostream & | os, |
const char * | str, | ||
size_t | len | ||
) |
Definition at line 105 of file string-helper.cpp.
References toHexChar().
std::string ndn::unescape | ( | const std::string & | str | ) |
Decode a percent-encoded string.
When % is not followed by two hex characters, the output is not transformed.
Examples:
Definition at line 126 of file string-helper.cpp.
Referenced by ndn::name::parseUriEscapedValue().
void ndn::unescape | ( | std::ostream & | os, |
const char * | str, | ||
size_t | len | ||
) |
Definition at line 134 of file string-helper.cpp.
References fromHexChar().
|
noexcept |
Convert (the least significant nibble of) n
to the corresponding hex character.
Definition at line 157 of file string-helper.hpp.
Referenced by escape().
|
noexcept |
Convert the hex character c
to an integer in [0, 15], or -1 if it's not a hex character.
Definition at line 168 of file string-helper.hpp.
Referenced by unescape().
Definition at line 27 of file delegation-list.cpp.
Definition at line 28 of file delegation-list.cpp.
const size_t ndn::MAX_SIZE_OF_BLOCK_FROM_STREAM = MAX_NDN_PACKET_SIZE |
Definition at line 39 of file block.cpp.
Referenced by ndn::Block::fromStream().
const size_t ndn::MAX_NDN_PACKET_SIZE = 8800 |
practical limit of network layer packet size
If a packet is longer than this size, library and application MAY drop it.
Definition at line 41 of file tlv.hpp.
Referenced by ndn::mgmt::StatusDatasetContext::append(), nfd::copyMtu(), nfd::face::StreamTransport< boost::asio::local::stream_protocol >::handleReceive(), nfd::face::LpReliability::piggyback(), and nfd::face::StreamTransport< boost::asio::local::stream_protocol >::startReceive().
Definition at line 107 of file exclude.cpp.
Definition at line 108 of file exclude.cpp.
Definition at line 109 of file exclude.cpp.
Definition at line 35 of file interest.cpp.
Definition at line 36 of file interest.cpp.
Definition at line 37 of file interest.cpp.
const unspecified_duration_type ndn::DEFAULT_INTEREST_LIFETIME = 4_s |
default value for InterestLifetime
Definition at line 40 of file interest.hpp.
Referenced by operator<<(), and nfd::pit::FaceRecord::update().
Definition at line 29 of file key-locator.cpp.
Definition at line 30 of file key-locator.cpp.
Definition at line 31 of file key-locator.cpp.
Definition at line 29 of file meta-info.cpp.
Definition at line 30 of file meta-info.cpp.
Definition at line 31 of file meta-info.cpp.
const time::milliseconds ndn::DEFAULT_FRESHNESS_PERIOD = time::milliseconds::zero() |
Definition at line 34 of file meta-info.hpp.
Referenced by ndn::MetaInfo::wireDecode(), and ndn::MetaInfo::wireEncode().
const name::Component ndn::KEYWORD_METADATA_COMP = "20 08 6D65746164617461"_block |
Definition at line 31 of file metadata-object.cpp.
Referenced by ndn::MetadataObject::isValidName(), ndn::MetadataObject::makeData(), and ndn::MetadataObject::makeDiscoveryInterest().
|
static |
Definition at line 29 of file prefix-announcement.cpp.
Referenced by ndn::PrefixAnnouncement::PrefixAnnouncement(), and ndn::PrefixAnnouncement::toData().
|
static |
Definition at line 26 of file key-params.cpp.
Referenced by ndn::detail::RsaKeyParamsInfo::checkKeySize().
|
static |
Definition at line 27 of file key-params.cpp.
Referenced by ndn::detail::RsaKeyParamsInfo::getDefaultSize().
|
static |
Definition at line 28 of file key-params.cpp.
Referenced by ndn::detail::EcKeyParamsInfo::checkKeySize().
|
static |
Definition at line 29 of file key-params.cpp.
Referenced by ndn::detail::EcKeyParamsInfo::getDefaultSize().
|
static |
Definition at line 30 of file key-params.cpp.
Referenced by ndn::detail::AesKeyParamsInfo::checkKeySize().
|
static |
Definition at line 31 of file key-params.cpp.
Referenced by ndn::detail::AesKeyParamsInfo::getDefaultSize().
Definition at line 29 of file selectors.cpp.
Definition at line 30 of file selectors.cpp.
Definition at line 31 of file selectors.cpp.
const int ndn::DEFAULT_CHILD_SELECTOR = 0 |
Definition at line 30 of file selectors.hpp.
Referenced by ndn::Selectors::empty(), operator<<(), ndn::Selectors::wireDecode(), and ndn::Selectors::wireEncode().
Definition at line 29 of file signature-info.cpp.
Definition at line 30 of file signature-info.cpp.
Definition at line 31 of file signature-info.cpp.