6572d51288
-Fix bug in GDScript, now static functions can call static functions.
19 lines
303 B
C++
19 lines
303 B
C++
#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
|
|
|