mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-12-09 13:19:00 +00:00
Implement ORBIS_NET_CTL_INFO_HTTP_PROXY_CONFIG (#3366)
This commit is contained in:
@@ -697,7 +697,7 @@ int PS4_SYSV_ABI sceNetEpollWait() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int* PS4_SYSV_ABI sceNetErrnoLoc() {
|
int* PS4_SYSV_ABI sceNetErrnoLoc() {
|
||||||
LOG_ERROR(Lib_Net, "(STUBBED) called");
|
LOG_DEBUG(Lib_Net, "called");
|
||||||
return &net_errno;
|
return &net_errno;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -217,6 +217,10 @@ int PS4_SYSV_ABI sceNetCtlGetInfo(int code, OrbisNetCtlInfo* info) {
|
|||||||
}
|
}
|
||||||
break;
|
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:
|
default:
|
||||||
LOG_ERROR(Lib_NetCtl, "{} unsupported code", code);
|
LOG_ERROR(Lib_NetCtl, "{} unsupported code", code);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user