From aa7a91ce90be522adb257200654762678ad5e0b0 Mon Sep 17 00:00:00 2001 From: megamage Date: Tue, 2 Jun 2009 17:40:22 -0500 Subject: [7937] Check OpenSSL lib at server start up. Author: AlexDereka --HG-- branch : trunk --- src/trinityrealm/Main.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'src/trinityrealm/Main.cpp') diff --git a/src/trinityrealm/Main.cpp b/src/trinityrealm/Main.cpp index cbadd4d1e4c..7d36f4c9a59 100644 --- a/src/trinityrealm/Main.cpp +++ b/src/trinityrealm/Main.cpp @@ -32,6 +32,8 @@ #include "AuthSocket.h" #include "SystemConfig.h" #include "Util.h" +#include +#include // Format is YYYYMMDDRR where RR is the change in the conf file // for that day. @@ -162,6 +164,14 @@ extern int main(int argc, char **argv) while (pause > clock()) {} } + sLog.outString("%s (Library: %s)", OPENSSL_VERSION_TEXT, SSLeay_version(SSLEAY_VERSION)); + if (SSLeay() < 0x009080bfL ) + { + sLog.outError("Outdated version of OpenSSL lib, Logins to server impossible!"); + sLog.outError("minimal required version [OpenSSL 0.9.8k]"); + return 1; + } + sLog.outString( "%s (realm-daemon)", _FULLVERSION ); sLog.outString( " to stop.\n" ); -- cgit v1.2.3