Add maximum check for OpenSSL versions greater then supported version.

Signed-off-by: billy1arm <antz@cix.co.uk>
This commit is contained in:
meltie2013 2022-10-07 22:00:28 +01:00 committed by billy1arm
parent 9e5f6bf3e1
commit a3d91c5a60
No known key found for this signature in database
GPG Key ID: 0DF907270598C85F

View File

@ -391,10 +391,10 @@ int main(int argc, char** argv)
sLog.outString("Using configuration file %s.", cfg_file);
DETAIL_LOG("Using SSL version: %s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION));
if (SSLeay() < 0x009080bfL)
if (SSLeay() < 0x10100000L || SSLeay() > 0x10200000L)
{
DETAIL_LOG("WARNING: Outdated version of OpenSSL lib. Logins to server may not work!");
DETAIL_LOG("WARNING: Minimal required version [OpenSSL 0.9.8k]");
DETAIL_LOG("WARNING: OpenSSL version may be out of date or unsupported. Logins to server may not work!");
DETAIL_LOG("WARNING: Minimal required version [OpenSSL 1.1.x] and Maximum supported version [OpenSSL 1.2]");
}
DETAIL_LOG("Using ACE: %s", ACE_VERSION);