mirror of
https://github.com/CTCaer/RetroArch.git
synced 2025-01-20 18:02:12 +00:00
(net_http) Comment out debug logging
This commit is contained in:
parent
2931ae3d17
commit
8dd4333e16
@ -124,6 +124,7 @@ error:
|
||||
return -1;
|
||||
}
|
||||
|
||||
#if 0
|
||||
static void net_http_send(int fd, bool * error,
|
||||
const char * data, size_t len)
|
||||
{
|
||||
@ -147,11 +148,18 @@ static void net_http_send(int fd, bool * error,
|
||||
len -= thislen;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
static void net_http_send_str(int fd, bool *error, const char *text)
|
||||
{
|
||||
printf("%s",text);
|
||||
#if 0
|
||||
printf("%s",text);
|
||||
net_http_send(fd, error, text, strlen(text));
|
||||
#else
|
||||
(void)fd;
|
||||
(void)error;
|
||||
(void)text;
|
||||
#endif
|
||||
}
|
||||
|
||||
static ssize_t net_http_recv(int fd, bool *error,
|
||||
|
Loading…
x
Reference in New Issue
Block a user