mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-10-03 06:38:36 +00:00
Implement ORBIS_NET_CTL_INFO_HTTP_PROXY_CONFIG (#3366)
This commit is contained in:
parent
1e7c4bb69c
commit
a362f20dae
2 changed files with 5 additions and 1 deletions
|
@ -697,7 +697,7 @@ int PS4_SYSV_ABI sceNetEpollWait() {
|
|||
}
|
||||
|
||||
int* PS4_SYSV_ABI sceNetErrnoLoc() {
|
||||
LOG_ERROR(Lib_Net, "(STUBBED) called");
|
||||
LOG_DEBUG(Lib_Net, "called");
|
||||
return &net_errno;
|
||||
}
|
||||
|
||||
|
|
|
@ -217,6 +217,10 @@ int PS4_SYSV_ABI sceNetCtlGetInfo(int code, OrbisNetCtlInfo* info) {
|
|||
}
|
||||
break;
|
||||
}
|
||||
case ORBIS_NET_CTL_INFO_HTTP_PROXY_CONFIG:
|
||||
info->http_proxy_config = 0; // off
|
||||
LOG_DEBUG(Lib_NetCtl, "http proxy config: {}", info->http_proxy_config);
|
||||
break;
|
||||
default:
|
||||
LOG_ERROR(Lib_NetCtl, "{} unsupported code", code);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue