mirror of
https://github.com/oxen-io/lokinet
synced 2023-12-14 06:53:00 +01:00
18 lines
No EOL
350 B
C++
18 lines
No EOL
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 |