mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-03 23:15:52 +00:00
18 lines
350 B
C++
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 |