mirror of
https://github.com/Detanup01/gbe_fork.git
synced 2024-11-23 11:15:34 +08:00
verbose curl logging
This commit is contained in:
parent
c0bc32849a
commit
50066cc105
@ -249,7 +249,7 @@ static void run_at_startup()
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
#if defined(STEAM_WIN32)
|
#if defined(STEAM_WIN32)
|
||||||
WSADATA wsaData;
|
WSADATA wsaData{};
|
||||||
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != NO_ERROR) {
|
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != NO_ERROR) {
|
||||||
PRINT_DEBUG("Networking WSAStartup error");
|
PRINT_DEBUG("Networking WSAStartup error");
|
||||||
return;
|
return;
|
||||||
@ -257,8 +257,13 @@ static void run_at_startup()
|
|||||||
|
|
||||||
for (int i = 0; i < 10; ++i) {
|
for (int i = 0; i < 10; ++i) {
|
||||||
//hack: the game Full Mojo Rampage calls WSACleanup on startup so we call WSAStartup a few times so it doesn't get deallocated.
|
//hack: the game Full Mojo Rampage calls WSACleanup on startup so we call WSAStartup a few times so it doesn't get deallocated.
|
||||||
WSAStartup(MAKEWORD(2, 2), &wsaData);
|
WSADATA wsaData{};
|
||||||
|
if (WSAStartup(MAKEWORD(2, 2), &wsaData) != NO_ERROR) {
|
||||||
|
PRINT_DEBUG("Networking WSAStartup error");
|
||||||
|
return;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
PRINT_DEBUG("Networking WSAStartup success!");
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
@ -160,6 +160,30 @@ bool Steam_HTTP::SetHTTPRequestGetOrPostParameter( HTTPRequestHandle hRequest, c
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static int curl_debug_trace(
|
||||||
|
CURL *handle, curl_infotype type,
|
||||||
|
char *data, size_t size,
|
||||||
|
void *clientp
|
||||||
|
)
|
||||||
|
{
|
||||||
|
// https://curl.se/libcurl/c/CURLOPT_DEBUGFUNCTION.html
|
||||||
|
std::string text{};
|
||||||
|
switch (type) {
|
||||||
|
case CURLINFO_TEXT: text = "Info: " + std::string(data, size); break;
|
||||||
|
case CURLINFO_HEADER_IN: text = "<= Recv header"; break;
|
||||||
|
case CURLINFO_HEADER_OUT: text = "=> Send header"; break;
|
||||||
|
case CURLINFO_DATA_IN: text = "<= Recv data"; break;
|
||||||
|
case CURLINFO_DATA_OUT: text = "=> Send data"; break;
|
||||||
|
case CURLINFO_SSL_DATA_OUT: text = "=> Send SSL data"; break;
|
||||||
|
case CURLINFO_SSL_DATA_IN: text = "<= Recv SSL data"; break;
|
||||||
|
|
||||||
|
default: text = "[X] ERROR: unknown callback type"; break;
|
||||||
|
}
|
||||||
|
|
||||||
|
PRINT_DEBUG("%s", text.c_str());
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
void Steam_HTTP::online_http_request(Steam_Http_Request *request, SteamAPICall_t *pCallHandle)
|
void Steam_HTTP::online_http_request(Steam_Http_Request *request, SteamAPICall_t *pCallHandle)
|
||||||
{
|
{
|
||||||
@ -213,6 +237,11 @@ void Steam_HTTP::online_http_request(Steam_Http_Request *request, SteamAPICall_t
|
|||||||
send_callresult();
|
send_callresult();
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifndef EMU_RELEASE_BUILD
|
||||||
|
curl_easy_setopt(chttp, CURLOPT_DEBUGFUNCTION, curl_debug_trace);
|
||||||
|
curl_easy_setopt(chttp, CURLOPT_VERBOSE, 1L);
|
||||||
|
#endif
|
||||||
|
|
||||||
// headers
|
// headers
|
||||||
std::vector<std::string> headers{};
|
std::vector<std::string> headers{};
|
||||||
@ -314,7 +343,7 @@ void Steam_HTTP::online_http_request(Steam_Http_Request *request, SteamAPICall_t
|
|||||||
fclose(hfile);
|
fclose(hfile);
|
||||||
headers.clear();
|
headers.clear();
|
||||||
|
|
||||||
PRINT_DEBUG("CURL error code for '%s' [%i] (OK == 0)", request->url.c_str(), (int)res_curl);
|
PRINT_DEBUG("CURL error code for '%s' [%i = '%s'] (OK == 0)", request->url.c_str(), (int)res_curl, curl_easy_strerror(res_curl));
|
||||||
|
|
||||||
unsigned int file_size = file_size_(request->target_filepath);
|
unsigned int file_size = file_size_(request->target_filepath);
|
||||||
if (file_size) {
|
if (file_size) {
|
||||||
|
@ -535,8 +535,9 @@ local wild_zlib_64 = {
|
|||||||
if _OPTIONS["build-curl"] or _OPTIONS["all-build"] then
|
if _OPTIONS["build-curl"] or _OPTIONS["all-build"] then
|
||||||
local curl_common_defs = {
|
local curl_common_defs = {
|
||||||
"BUILD_CURL_EXE=OFF",
|
"BUILD_CURL_EXE=OFF",
|
||||||
"BUILD_SHARED_LIBS=OFF",
|
|
||||||
"BUILD_STATIC_CURL=OFF", -- "Build curl executable with static libcurl"
|
"BUILD_STATIC_CURL=OFF", -- "Build curl executable with static libcurl"
|
||||||
|
|
||||||
|
"BUILD_SHARED_LIBS=OFF",
|
||||||
"BUILD_STATIC_LIBS=ON",
|
"BUILD_STATIC_LIBS=ON",
|
||||||
"BUILD_MISC_DOCS=OFF",
|
"BUILD_MISC_DOCS=OFF",
|
||||||
"BUILD_TESTING=OFF",
|
"BUILD_TESTING=OFF",
|
||||||
@ -544,6 +545,8 @@ if _OPTIONS["build-curl"] or _OPTIONS["all-build"] then
|
|||||||
"ENABLE_CURL_MANUAL=OFF",
|
"ENABLE_CURL_MANUAL=OFF",
|
||||||
"CURL_USE_OPENSSL=OFF",
|
"CURL_USE_OPENSSL=OFF",
|
||||||
"CURL_ZLIB=ON",
|
"CURL_ZLIB=ON",
|
||||||
|
|
||||||
|
-- fix building on Arch Linux
|
||||||
"CURL_USE_LIBSSH2=OFF",
|
"CURL_USE_LIBSSH2=OFF",
|
||||||
"CURL_USE_LIBPSL=OFF",
|
"CURL_USE_LIBPSL=OFF",
|
||||||
"USE_LIBIDN2=OFF",
|
"USE_LIBIDN2=OFF",
|
||||||
|
Loading…
Reference in New Issue
Block a user