mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-05 21:20:38 +00:00
19 lines
339 B
C++
19 lines
339 B
C++
#ifndef LLARP_ROUTING_ENDPOINT_HPP
|
|
#define LLARP_ROUTING_ENDPOINT_HPP
|
|
|
|
#include <aligned.hpp>
|
|
#include <buffer.h>
|
|
|
|
namespace llarp
|
|
{
|
|
using RoutingEndpoint_t = AlignedBuffer< 32 >;
|
|
|
|
/// Interface for end to end crypto between endpoints
|
|
struct IRoutingEndpoint
|
|
{
|
|
virtual ~IRoutingEndpoint(){};
|
|
};
|
|
} // namespace llarp
|
|
|
|
#endif
|