lokinet/include/llarp/routing_endpoint.hpp
2018-07-09 14:34:28 +10:00

18 lines
350 B
C++

#ifndef LLARP_ROUTING_ENDPOINT_HPP
#define LLARP_ROUTING_ENDPOINT_HPP
#include <llarp/buffer.h>
#include <llarp/aligned.hpp>
namespace llarp
{
typedef AlignedBuffer< 32 > RoutingEndpoint_t;
/// Interface for end to end crypto between endpoints
struct IRoutingEndpoint
{
virtual ~IRoutingEndpoint(){};
};
} // namespace llarp
#endif