Probably what the cipher algorithm is no longer supported.VladimirD wrote:SSL3_GET_CLIENT_HELLO:no shared cipher
How to generate PEM-file ?
Probably what the cipher algorithm is no longer supported.VladimirD wrote:SSL3_GET_CLIENT_HELLO:no shared cipher
Code: Select all
Mutex & getRootMutex()
{
static Mutex * gpRootMutex = new Mutex;
return *gpRootMutex;
}
Code: Select all
Mutex gRootMutex;
Mutex & getRootMutex()
{
return gRootMutex;
}