Authenticator.cpp: Killed a global destructor warning
This commit is contained in:
parent
76b33970b0
commit
f94cf49980
@ -20,7 +20,9 @@
|
|||||||
|
|
||||||
/** This is the data of the root certs for Starfield Technologies, the CA that signed sessionserver.mojang.com's cert:
|
/** This is the data of the root certs for Starfield Technologies, the CA that signed sessionserver.mojang.com's cert:
|
||||||
Downloaded from http://certs.starfieldtech.com/repository/ */
|
Downloaded from http://certs.starfieldtech.com/repository/ */
|
||||||
static const AString gStarfieldCACert(
|
static const AString StarfieldCACert()
|
||||||
|
{
|
||||||
|
return AString(
|
||||||
// G2 cert
|
// G2 cert
|
||||||
"-----BEGIN CERTIFICATE-----\n"
|
"-----BEGIN CERTIFICATE-----\n"
|
||||||
"MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx\n"
|
"MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx\n"
|
||||||
@ -71,6 +73,7 @@ static const AString gStarfieldCACert(
|
|||||||
"WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q=\n"
|
"WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q=\n"
|
||||||
"-----END CERTIFICATE-----\n"
|
"-----END CERTIFICATE-----\n"
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -263,7 +266,7 @@ bool cAuthenticator::AuthWithYggdrasil(AString & a_UserName, const AString & a_S
|
|||||||
Request += "\r\n";
|
Request += "\r\n";
|
||||||
|
|
||||||
AString Response;
|
AString Response;
|
||||||
if (!SecureGetFromAddress(gStarfieldCACert, m_Server, Request, Response))
|
if (!SecureGetFromAddress(StarfieldCACert(), m_Server, Request, Response))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -343,7 +346,7 @@ bool cAuthenticator::GetPlayerProperties(const AString & a_UUID, Json::Value & a
|
|||||||
Request += "\r\n";
|
Request += "\r\n";
|
||||||
|
|
||||||
AString Response;
|
AString Response;
|
||||||
if (!ConnectSecurelyToAddress(gStarfieldCACert, m_Server, Request, Response))
|
if (!ConnectSecurelyToAddress(StarfieldCACert(), m_Server, Request, Response))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user