mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 19:19:02 -04:00
m_ssl_gnutls, m_ssl_openssl Log library version information on load
This commit is contained in:
parent
68c06dd45f
commit
9675ce9553
@ -37,6 +37,7 @@
|
||||
|
||||
#ifndef GNUTLS_VERSION_NUMBER
|
||||
#define GNUTLS_VERSION_NUMBER LIBGNUTLS_VERSION_NUMBER
|
||||
#define GNUTLS_VERSION LIBGNUTLS_VERSION
|
||||
#endif
|
||||
|
||||
// Check if the GnuTLS library is at least version major.minor.patch
|
||||
@ -1241,6 +1242,7 @@ class ModuleSSLGnuTLS : public Module
|
||||
|
||||
void init() CXX11_OVERRIDE
|
||||
{
|
||||
ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "GnuTLS lib version %s module was compiled for " GNUTLS_VERSION, gnutls_check_version(NULL));
|
||||
ReadProfiles();
|
||||
ServerInstance->GenRandom = &randhandler;
|
||||
}
|
||||
|
@ -800,6 +800,8 @@ class ModuleSSLOpenSSL : public Module
|
||||
|
||||
void init() CXX11_OVERRIDE
|
||||
{
|
||||
ServerInstance->Logs->Log(MODNAME, LOG_DEFAULT, "OpenSSL lib version \"%s\" module was compiled for \"" OPENSSL_VERSION_TEXT "\"", SSLeay_version(SSLEAY_VERSION));
|
||||
|
||||
// Register application specific data
|
||||
char exdatastr[] = "inspircd";
|
||||
exdataindex = SSL_get_ex_new_index(0, exdatastr, NULL, NULL, NULL);
|
||||
|
Loading…
x
Reference in New Issue
Block a user