NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
dispatcher.hpp File Reference
#include "../face.hpp"
#include "../security/key-chain.hpp"
#include "../encoding/block.hpp"
#include "../util/in-memory-storage-fifo.hpp"
#include "control-response.hpp"
#include "control-parameters.hpp"
#include "status-dataset-context.hpp"
#include <unordered_map>
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
 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, const AcceptContinuation &accept, const RejectContinuation &reject)> ndn::mgmt::Authorization
 a function that performs authorization More...
 
typedef std::function< bool(const ControlParameters &params)> 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 &params, const 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 &notification)> 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 ()