mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-04-09 11:11:29 -06:00
Implement ORBIS_NET_CTL_INFO_HTTP_PROXY_CONFIG (#3366)
This commit is contained in:
parent
1e7c4bb69c
commit
a362f20dae
@ -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…
Reference in New Issue
Block a user