2018-06-10 14:05:48 +00:00
|
|
|
#ifndef LLARP_ROUTING_ENDPOINT_HPP
|
|
|
|
#define LLARP_ROUTING_ENDPOINT_HPP
|
|
|
|
|
|
|
|
#include <llarp/buffer.h>
|
2018-06-17 15:26:00 +00:00
|
|
|
#include <llarp/aligned.hpp>
|
2018-06-10 14:05:48 +00:00
|
|
|
|
|
|
|
namespace llarp
|
|
|
|
{
|
2018-06-17 15:26:00 +00:00
|
|
|
typedef AlignedBuffer< 32 > RoutingEndpoint_t;
|
2018-06-10 14:05:48 +00:00
|
|
|
|
|
|
|
/// Interface for end to end crypto between endpoints
|
|
|
|
struct IRoutingEndpoint
|
|
|
|
{
|
2018-06-17 15:26:00 +00:00
|
|
|
virtual ~IRoutingEndpoint(){};
|
2018-06-10 14:05:48 +00:00
|
|
|
};
|
2018-07-09 03:34:29 +00:00
|
|
|
} // namespace llarp
|
2018-06-10 14:05:48 +00:00
|
|
|
|
|
|
|
#endif
|