mirror of
https://github.com/BeamMP/BeamMP-Launcher.git
synced 2025-08-16 16:27:15 +00:00
log SSL errors
This commit is contained in:
parent
eaeacbd8de
commit
ede6fcd7dd
@ -87,8 +87,14 @@ std::string HTTP::Get(const std::string& IP) {
|
|||||||
if (isDownload) {
|
if (isDownload) {
|
||||||
std::cout << "\n";
|
std::cout << "\n";
|
||||||
}
|
}
|
||||||
|
auto result = cli.get_openssl_verify_result();
|
||||||
|
std::string verify_error;
|
||||||
|
if (result) {
|
||||||
|
verify_error = X509_verify_cert_error_string(result);
|
||||||
|
}
|
||||||
|
|
||||||
WriteHttpDebug(cli, "GET", IP, res);
|
WriteHttpDebug(cli, "GET", IP, res);
|
||||||
error("HTTP Get failed on " + to_string(res.error()) + ", ssl verify = " + std::to_string(cli.get_openssl_verify_result()));
|
error("HTTP Get failed on " + to_string(res.error()) + ", ssl verify = " + verify_error);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ret;
|
return Ret;
|
||||||
@ -128,8 +134,13 @@ std::string HTTP::Post(const std::string& IP, const std::string& Fields) {
|
|||||||
}
|
}
|
||||||
Ret = res->body;
|
Ret = res->body;
|
||||||
} else {
|
} else {
|
||||||
|
auto result = cli.get_openssl_verify_result();
|
||||||
|
std::string verify_error;
|
||||||
|
if (result) {
|
||||||
|
verify_error = X509_verify_cert_error_string(result);
|
||||||
|
}
|
||||||
WriteHttpDebug(cli, "POST", IP, res);
|
WriteHttpDebug(cli, "POST", IP, res);
|
||||||
error("HTTP Post failed on " + to_string(res.error()) + ", ssl verify = " + std::to_string(cli.get_openssl_verify_result()));
|
error("HTTP Post failed on " + to_string(res.error()) + ", ssl verify = " + verify_error);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user