#include "ndn-cxx/data.hpp"#include "ndn-cxx/interest.hpp"#include "ndn-cxx/interest-filter.hpp"#include "ndn-cxx/detail/asio-fwd.hpp"#include "ndn-cxx/detail/cancel-handle.hpp"#include "ndn-cxx/encoding/nfd-constants.hpp"#include "ndn-cxx/lp/nack.hpp"#include "ndn-cxx/security/key-chain.hpp"#include "ndn-cxx/security/signing-info.hpp"
Include dependency graph for face.hpp:
This graph shows which files directly or indirectly include this file:Go to the source code of this file.
Classes | |
| class | ndn::Face::Error |
| class | ndn::Face |
| Provide a communication channel with local or remote NDN forwarder. More... | |
| class | ndn::InterestFilterHandle |
| A handle of registered Interest filter. More... | |
| class | ndn::Face::OversizedPacketError |
| Exception thrown when attempting to send a packet over size limit. More... | |
| class | ndn::PendingInterestHandle |
| A handle of pending Interest. More... | |
| class | ndn::RegisteredPrefixHandle |
| A handle of registered prefix. More... | |
Namespaces | |
| ndn | |
Typedefs | |
| typedef function< void(const Interest &, const Data &)> | ndn::DataCallback |
| Callback invoked when expressed Interest gets satisfied with a Data packet. More... | |
| typedef function< void(const InterestFilter &, const Interest &)> | ndn::InterestCallback |
| Callback invoked when incoming Interest matches the specified InterestFilter. More... | |
| typedef function< void(const Interest &, const lp::Nack &)> | ndn::NackCallback |
| Callback invoked when Nack is sent in response to expressed Interest. More... | |
| typedef function< void(const Name &, const std::string &)> | ndn::RegisterPrefixFailureCallback |
| Callback invoked when registerPrefix or setInterestFilter command fails. More... | |
| typedef function< void(const Name &)> | ndn::RegisterPrefixSuccessCallback |
| Callback invoked when registerPrefix or setInterestFilter command succeeds. More... | |
| using | ndn::ScopedInterestFilterHandle = detail::ScopedCancelHandle< InterestFilterHandle > |
| A scoped handle of registered Interest filter. More... | |
| using | ndn::ScopedPendingInterestHandle = detail::ScopedCancelHandle< PendingInterestHandle > |
| A scoped handle of pending Interest. More... | |
| using | ndn::ScopedRegisteredPrefixHandle = detail::ScopedCancelHandle< RegisteredPrefixHandle > |
| A scoped handle of registered prefix. More... | |
| typedef function< void(const Interest &)> | ndn::TimeoutCallback |
| Callback invoked when expressed Interest times out. More... | |
| typedef function< void(const std::string &)> | ndn::UnregisterPrefixFailureCallback |
| Callback invoked when unregisterPrefix or unsetInterestFilter command fails. More... | |
| typedef function< void()> | ndn::UnregisterPrefixSuccessCallback |
| Callback invoked when unregisterPrefix or unsetInterestFilter command succeeds. More... | |