NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
certificate-fetcher-from-network.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2021 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_CXX_SECURITY_CERTIFICATE_FETCHER_FROM_NETWORK_HPP
23 #define NDN_CXX_SECURITY_CERTIFICATE_FETCHER_FROM_NETWORK_HPP
24 
27 
28 namespace ndn {
29 
30 class Data;
31 class Face;
32 
33 namespace lp {
34 class Nack;
35 } // namespace lp
36 
37 namespace security {
38 inline namespace v2 {
39 
44 {
45 public:
46  explicit
48 
49 protected:
50  void
51  doFetch(const shared_ptr<CertificateRequest>& certRequest, const shared_ptr<ValidationState>& state,
52  const ValidationContinuation& continueValidation) override;
53 
57  void
58  dataCallback(const Data& data,
59  const shared_ptr<CertificateRequest>& certRequest, const shared_ptr<ValidationState>& state,
60  const ValidationContinuation& continueValidation);
61 
67  void
68  nackCallback(const lp::Nack& nack,
69  const shared_ptr<CertificateRequest>& certRequest, const shared_ptr<ValidationState>& state,
70  const ValidationContinuation& continueValidation);
71 
77  void
78  timeoutCallback(const shared_ptr<CertificateRequest>& certRequest, const shared_ptr<ValidationState>& state,
79  const ValidationContinuation& continueValidation);
80 
81 protected:
84 };
85 
86 } // inline namespace v2
87 } // namespace security
88 } // namespace ndn
89 
90 #endif // NDN_CXX_SECURITY_CERTIFICATE_FETCHER_FROM_NETWORK_HPP
Copyright (c) 2011-2015 Regents of the University of California.
Interface used by the validator to fetch missing certificates.
std::function< void(const Certificate &cert, const shared_ptr< ValidationState > &state)> ValidationContinuation
represents a Network Nack
Definition: nack.hpp:38
ndn Face
Definition: face-impl.hpp:42
Provide a communication channel with local or remote NDN forwarder.
Definition: face.hpp:90
Generic time-based scheduler.
Definition: scheduler.hpp:132
Represents a Data packet.
Definition: data.hpp:37