summaryrefslogtreecommitdiff
path: root/drivers/openssl/register_openssl.cpp
blob: a4a60813b6b4a80d26f530eb47f3c5ee4e162a2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include "register_openssl.h"

#include "stream_peer_openssl.h"
#ifdef OPENSSL_ENABLED

void register_openssl() {

	ObjectTypeDB::register_type<StreamPeerOpenSSL>();
	StreamPeerOpenSSL::initialize_ssl();

}

void unregister_openssl() {

	StreamPeerOpenSSL::finalize_ssl();

}
#endif