dataset-interest-handler.hpp File Reference

Copyright (c) 2014-2019, The University of Memphis, Regents of the University of California, Arizona Board of Regents. More...

#include "route/routing-table-entry.hpp"
#include "route/routing-table.hpp"
#include "route/nexthop-list.hpp"
#include "lsdb.hpp"
#include "logger.hpp"
#include "tlv/adjacency-lsa.hpp"
#include "tlv/coordinate-lsa.hpp"
#include "tlv/name-lsa.hpp"
#include "tlv/routing-table-status.hpp"
#include "tlv/routing-table-entry.hpp"
#include <ndn-cxx/mgmt/dispatcher.hpp>
#include <ndn-cxx/face.hpp>
#include <boost/noncopyable.hpp>
Include dependency graph for dataset-interest-handler.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Data Structures

class  nlsr::DatasetInterestHandler
 Class to publish all dataset. More...
 
class  nlsr::DatasetInterestHandler::Error
 

Namespaces

 nlsr
 Copyright (c) 2014-2018, The University of Memphis, Regents of the University of California, Arizona Board of Regents.
 
 nlsr::dataset
 

Functions

template<typename T >
std::list< T > nlsr::getTlvLsas (const Lsdb &lsdb)
 
template<>
std::list< tlv::AdjacencyLsa > nlsr::getTlvLsas< tlv::AdjacencyLsa > (const Lsdb &lsdb)
 
template<>
std::list< tlv::CoordinateLsa > nlsr::getTlvLsas< tlv::CoordinateLsa > (const Lsdb &lsdb)
 
template<>
std::list< tlv::NameLsa > nlsr::getTlvLsas< tlv::NameLsa > (const Lsdb &lsdb)
 

Variables

const ndn::Name::Component nlsr::dataset::ADJACENCY_COMPONENT = ndn::Name::Component{"adjacencies"}
 
const ndn::Name::Component nlsr::dataset::NAME_COMPONENT = ndn::Name::Component{"names"}
 
const ndn::Name::Component nlsr::dataset::COORDINATE_COMPONENT = ndn::Name::Component{"coordinates"}
 

Detailed Description

Copyright (c) 2014-2019, The University of Memphis, Regents of the University of California, Arizona Board of Regents.

This file is part of NLSR (Named-data Link State Routing). See AUTHORS.md for complete list of NLSR authors and contributors.

NLSR is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with NLSR, e.g., in COPYING.md file. If not, see http://www.gnu.org/licenses/.

This file details a class that is used by NLSRC and other command-line tools to examine the state of NLSR. This class doesn't only handle interest from local host, but also handle interests from remote router. This system is not designed to be used by routers to publish data to each other.

Definition in file dataset-interest-handler.hpp.