Add curl cvars for debugging

This commit is contained in:
Kawe Mazidjatari 2023-01-30 00:04:11 +01:00
parent 9164856b95
commit ca9143dde9
4 changed files with 17 additions and 0 deletions

View File

@ -72,6 +72,9 @@ void ConVar::Init(void)
cm_unset_all_cmdquery = ConVar::Create("cm_unset_all_cmdquery" , "0", FCVAR_DEVELOPMENTONLY | FCVAR_REPLICATED, "Returns false on every ConVar/ConCommand query ( !warning! ).", false, 0.f, false, 0.f, nullptr, nullptr);
curl_debug = ConVar::Create("curl_debug", "0", FCVAR_DEVELOPMENTONLY, "Determines whether or not to enable curl debug logging.", false, 0.f, false, 0.f, nullptr, "1 = curl logs; 0 (zero) = no logs.");
ssl_verify_peer = ConVar::Create("ssl_verify_peer", "1", FCVAR_DEVELOPMENTONLY, "Verify the authenticity of the peer's SSL certificate.", false, 0.f, false, 0.f, nullptr, "1 = curl verifies; 0 (zero) = no verification.");
rcon_address = ConVar::Create("rcon_address", "localhost", FCVAR_SERVER_CANNOT_QUERY | FCVAR_DONTRECORD | FCVAR_RELEASE, "Remote server access address.", false, 0.f, false, 0.f, nullptr, nullptr);
rcon_password = ConVar::Create("rcon_password", "" , FCVAR_SERVER_CANNOT_QUERY | FCVAR_DONTRECORD | FCVAR_RELEASE, "Remote server access password (rcon is disabled if empty).", false, 0.f, false, 0.f, &RCON_PasswordChanged_f, nullptr);

View File

@ -32,6 +32,9 @@ ConVar* hostport = nullptr;
ConVar* host_hasIrreversibleShutdown = nullptr;
ConVar* mp_gamemode = nullptr;
ConVar* curl_debug = nullptr;
ConVar* ssl_verify_peer = nullptr;
ConVar* rcon_address = nullptr;
ConVar* rcon_password = nullptr;

View File

@ -29,6 +29,9 @@ extern ConVar* host_hasIrreversibleShutdown;
extern ConVar* mp_gamemode;
extern ConVar* curl_debug;
extern ConVar* ssl_verify_peer;
extern ConVar* rcon_address;
extern ConVar* rcon_password;

View File

@ -4,6 +4,7 @@
//
//===========================================================================//
#include "core/stdafx.h"
#include "tier1/cvar.h"
#include "curlutils.h"
size_t CURLWriteStringCallback(char* contents, size_t size, size_t nmemb, void* userp)
@ -43,6 +44,13 @@ CURL* CURLInitRequest(const string& hostname, const string& request, string& res
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, CURLWriteStringCallback);
curl_easy_setopt(curl, CURLOPT_WRITEDATA, &response);
curl_easy_setopt(curl, CURLOPT_VERBOSE, curl_debug->GetBool());
if (!ssl_verify_peer->GetBool())
{
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYPEER, 0L);
}
return curl;
}