#ifndef LLARP_ROUTING_ENDPOINT_HPP #define LLARP_ROUTING_ENDPOINT_HPP #include #include namespace llarp { using RoutingEndpoint_t = AlignedBuffer< 32 >; /// Interface for end to end crypto between endpoints struct IRoutingEndpoint { virtual ~IRoutingEndpoint(){}; }; } // namespace llarp #endif