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