[7937] Check OpenSSL lib at server start up. Author: AlexDereka

--HG--
branch : trunk
This commit is contained in:
megamage
2009-06-02 17:40:22 -05:00
parent 47a1477213
commit aa7a91ce90
3 changed files with 22 additions and 1 deletions
+10
View File
@@ -27,6 +27,8 @@
#include "Config/ConfigEnv.h"
#include "Log.h"
#include "Master.h"
#include <openssl/opensslv.h>
#include <openssl/crypto.h>
#ifndef _TRINITY_CORE_CONFIG
# define _TRINITY_CORE_CONFIG "TrinityCore.conf"
@@ -152,6 +154,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;
}
///- and run the 'Master'
/// \todo Why do we need this 'Master'? Can't all of this be in the Main as for Realmd?
return sMaster.Run();