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
validator-config.cpp
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
#include "
validator-config.hpp
"
23
#include "
v2/certificate-fetcher-from-network.hpp
"
24
25
namespace
ndn
{
26
namespace
security
{
27
28
ValidatorConfig::ValidatorConfig
(std::unique_ptr<v2::CertificateFetcher> fetcher,
const
Options
& options)
29
: v2::
Validator
(
make_unique
<v2::ValidationPolicyCommandInterest>(
make_unique
<v2::ValidationPolicyConfig>(),
30
options),
31
std
::move(fetcher))
32
, m_policyConfig(static_cast<v2::ValidationPolicyConfig&>(getPolicy().getInnerPolicy()))
33
{
34
}
35
36
ValidatorConfig::ValidatorConfig
(
Face
&
face
,
const
Options
& options)
37
:
ValidatorConfig
(
make_unique
<v2::CertificateFetcherFromNetwork>(face), options)
38
{
39
}
40
41
void
42
ValidatorConfig::load
(
const
std::string& filename)
43
{
44
m_policyConfig.load(filename);
45
}
46
47
void
48
ValidatorConfig::load
(
const
std::string& input,
const
std::string& filename)
49
{
50
m_policyConfig.load(input, filename);
51
}
52
53
void
54
ValidatorConfig::load
(std::istream& input,
const
std::string& filename)
55
{
56
m_policyConfig.load(input, filename);
57
}
58
59
void
60
ValidatorConfig::load
(
const
v2::validator_config::ConfigSection
& configSection,
61
const
std::string& filename)
62
{
63
m_policyConfig.load(configSection, filename);
64
}
65
66
}
// namespace security
67
}
// namespace ndn
validator-config.hpp
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::security::ValidatorConfig::load
void load(const std::string &filename)
Definition:
validator-config.cpp:42
ndn::security::v2::Validator
ndn security v2 Validator
Definition:
validator.cpp:32
ndn::security::ValidatorConfig
Helper for validator that uses CommandInterest + Config policy and NetworkFetcher.
Definition:
validator-config.hpp:35
ndn::make_unique
unique_ptr< T > make_unique(Args &&...args)
Definition:
backports.hpp:73
std
STL namespace.
ndn::security::ValidatorConfig::ValidatorConfig
ValidatorConfig(std::unique_ptr< v2::CertificateFetcher > fetcher, const Options &options=Options())
Definition:
validator-config.cpp:28
certificate-fetcher-from-network.hpp
websocketpp::transport::asio::socket::error::security
Catch-all error for security policy errors that don't fit in other categories.
Definition:
base.hpp:79
ndn::Face
Provide a communication channel with local or remote NDN forwarder.
Definition:
face.hpp:95
face
ndn::security::v2::validator_config::ConfigSection
boost::property_tree::ptree ConfigSection
Definition:
common.hpp:35
ndn::security::v2::ValidationPolicyCommandInterest::Options
Definition:
validation-policy-command-interest.hpp:44
ndnSIM
ndn-cxx
src
security
validator-config.cpp
Generated on Thu Nov 2 2017 03:30:29 for ndnSIM by
1.8.11