mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-10-29 11:05:43 +00:00
19 lines
265 B
C++
19 lines
265 B
C++
#ifndef LLARP_LINK_DTLS_HPP
|
|
#define LLARP_LINK_DTLS_HPP
|
|
|
|
#include <memory>
|
|
|
|
namespace llarp
|
|
{
|
|
struct ILinkLayer;
|
|
struct Router;
|
|
|
|
namespace dtls
|
|
{
|
|
std::unique_ptr< ILinkLayer >
|
|
NewServerFromRouter(llarp::Router* r);
|
|
}
|
|
} // namespace llarp
|
|
|
|
#endif
|