You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/include/llarp/routing_endpoint.hpp

18 lines
330 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(){};
};
}
#endif