dispatcher.hpp File Reference
+ Include dependency graph for dispatcher.hpp:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  ndn::mgmt::Dispatcher
 Implements a request dispatcher on server side of NFD Management protocol. More...
 

Namespaces

 ndn
 
 ndn::mgmt
 

Typedefs

using ndn::mgmt::AcceptContinuation = std::function< void(const std::string &requester)>
 A function to be called if authorization is successful. More...
 
using ndn::mgmt::Authorization = std::function< void(const Name &prefix, const Interest &interest, const ControlParameters *params, const AcceptContinuation &accept, const RejectContinuation &reject)>
 A function that performs authorization. More...
 
using ndn::mgmt::CommandContinuation = std::function< void(const ControlResponse &resp)>
 A function to be called after ControlCommandHandler completes. More...
 
using ndn::mgmt::ControlCommandHandler = std::function< void(const Name &prefix, const Interest &interest, const ControlParameters &params, const CommandContinuation &done)>
 A function to handle an authorized ControlCommand. More...
 
using ndn::mgmt::PostNotification = std::function< void(const Block &notification)>
 A function to post a notification. More...
 
using ndn::mgmt::RejectContinuation = std::function< void(RejectReply)>
 A function to be called if authorization is rejected. More...
 
using ndn::mgmt::StatusDatasetHandler = std::function< void(const Name &prefix, const Interest &interest, StatusDatasetContext &context)>
 A function to handle a StatusDataset request. More...
 
using ndn::mgmt::ValidateParameters = std::function< bool(const ControlParameters &params)>
 A function to validate input ControlParameters. More...
 

Enumerations

enum class  ndn::mgmt::RejectReply {
  ndn::mgmt::SILENT ,
  ndn::mgmt::STATUS403
}
 Indicates how to reply in case authorization is rejected. More...
 

Functions

Authorization ndn::mgmt::makeAcceptAllAuthorization ()
 Return an Authorization that accepts all Interests, with empty string as requester. More...