#include "../face.hpp"
#include "../security/key-chain.hpp"
#include "../encoding/block.hpp"
#include "control-response.hpp"
#include "control-parameters.hpp"
#include "status-dataset-context.hpp"
#include <unordered_map>
Go to the source code of this file.
Classes | |
class | ndn::mgmt::Dispatcher |
represents a dispatcher on server side of NFD Management protocol More... | |
Namespaces | |
ndn | |
Copyright (c) 2011-2015 Regents of the University of California. | |
ndn::mgmt | |
Typedefs | |
typedef std::function< void(const std::string &requester)> | ndn::mgmt::AcceptContinuation |
a function to be called if authorization is successful More... | |
typedef std::function< void(RejectReply act)> | ndn::mgmt::RejectContinuation |
a function to be called if authorization is rejected More... | |
typedef std::function< void(const Name &prefix, const Interest &interest, const ControlParameters *params, AcceptContinuation accept, RejectContinuation reject)> | ndn::mgmt::Authorization |
a function that performs authorization More... | |
typedef std::function< bool(const ControlParameters ¶ms)> | ndn::mgmt::ValidateParameters |
a function to validate input ControlParameters More... | |
typedef std::function< void(const ControlResponse &resp)> | ndn::mgmt::CommandContinuation |
a function to be called after ControlCommandHandler completes More... | |
typedef std::function< void(const Name &prefix, const Interest &interest, const ControlParameters ¶ms, CommandContinuation done)> | ndn::mgmt::ControlCommandHandler |
a function to handle an authorized ControlCommand More... | |
typedef std::function< void(const Name &prefix, const Interest &interest, StatusDatasetContext &context)> | ndn::mgmt::StatusDatasetHandler |
a function to handle a StatusDataset request More... | |
typedef std::function< void(const Block ¬ification)> | ndn::mgmt::PostNotification |
a function to post a notification More... | |
Enumerations | |
enum | ndn::mgmt::RejectReply { ndn::mgmt::RejectReply::SILENT, ndn::mgmt::RejectReply::STATUS403 } |
indicate how to reply in case authorization is rejected More... | |
Functions | |
Authorization | ndn::mgmt::makeAcceptAllAuthorization () |