lokinet/llarp/handlers/null.hpp

43 lines
898 B
C++
Raw Normal View History

2018-11-29 13:12:35 +00:00
#ifndef LLARP_HANDLERS_NULL_HPP
#define LLARP_HANDLERS_NULL_HPP
2018-12-12 02:15:08 +00:00
#include <service/endpoint.hpp>
2018-11-29 13:12:35 +00:00
namespace llarp
2018-11-29 13:12:35 +00:00
{
namespace handlers
2018-11-29 13:12:35 +00:00
{
2019-04-23 16:13:22 +00:00
struct NullEndpoint final
: public llarp::service::Endpoint,
public std::enable_shared_from_this< NullEndpoint >
2018-11-29 13:12:35 +00:00
{
NullEndpoint(const std::string &name, AbstractRouter *r,
llarp::service::Context *parent)
: llarp::service::Endpoint(name, r, parent)
{
}
2018-11-29 13:12:35 +00:00
bool
HandleInboundPacket(const service::ConvoTag, const llarp_buffer_t &,
service::ProtocolType) override
2018-11-29 13:12:35 +00:00
{
return true;
}
2019-04-23 16:13:22 +00:00
path::PathSet_ptr
GetSelf() override
{
return shared_from_this();
}
2019-06-11 16:44:05 +00:00
bool
SupportsV6() const override
{
return false;
}
2018-11-29 13:12:35 +00:00
};
} // namespace handlers
} // namespace llarp
2018-11-29 13:12:35 +00:00
#endif