1
1
Fork 0
mirror of https://github.com/oxen-io/lokinet synced 2023-12-14 06:53:00 +01:00
lokinet/include/llarp/dtls.hpp
Jeff Becker c3c388b6aa
remove iwp and start on curvecp
does not compile
2018-09-02 14:25:42 -04:00

32 lines
467 B
C++

#ifndef LLARP_DTLS_HPP
#define LLARP_DTLS_HPP
#include <openssl/ssl.h>
namespace llarp
{
namespace dtls
{
struct Base
{
Base(uint16_t mtu)
{
_ctx = SSL_CTX_new(DTLS_with_buffers_method());
SSL_CTX_set_custom_verify(_ctx, SSL_VERIFY_PEER, []());
}
~Base()
{
if(_ctx)
SSL_CTX_free(_ctx);
}
SSL_CTX* _ctx = nullptr;
};
} // namespace dtls
} // namespace llarp
#endif