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