mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-22 10:04:39 +00:00
Redirect InetPtonEx to InetPton
This commit is contained in:
parent
78e4a86088
commit
f40ea8851c
@ -1339,9 +1339,9 @@ int PS4_SYSV_ABI sceNetInetPton(int af, const char* src, void* dst) {
|
|||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceNetInetPtonEx() {
|
int PS4_SYSV_ABI sceNetInetPtonEx(int af, const char* src, void* dst, int flags) {
|
||||||
LOG_ERROR(Lib_Net, "(STUBBED) called");
|
LOG_WARNING(Lib_Net, "ignored flags, redirecting to sceNetInetPton");
|
||||||
return ORBIS_OK;
|
return sceNetInetPton(af, src, dst);
|
||||||
}
|
}
|
||||||
|
|
||||||
int PS4_SYSV_ABI sceNetInetPtonWithScopeId() {
|
int PS4_SYSV_ABI sceNetInetPtonWithScopeId() {
|
||||||
|
@ -297,7 +297,7 @@ u16 PS4_SYSV_ABI sceNetHtons(u16 host16);
|
|||||||
const char* PS4_SYSV_ABI sceNetInetNtop(int af, const void* src, char* dst, u32 size);
|
const char* PS4_SYSV_ABI sceNetInetNtop(int af, const void* src, char* dst, u32 size);
|
||||||
int PS4_SYSV_ABI sceNetInetNtopWithScopeId();
|
int PS4_SYSV_ABI sceNetInetNtopWithScopeId();
|
||||||
int PS4_SYSV_ABI sceNetInetPton(int af, const char* src, void* dst);
|
int PS4_SYSV_ABI sceNetInetPton(int af, const char* src, void* dst);
|
||||||
int PS4_SYSV_ABI sceNetInetPtonEx();
|
int PS4_SYSV_ABI sceNetInetPtonEx(int af, const char* src, void* dst, int flags);
|
||||||
int PS4_SYSV_ABI sceNetInetPtonWithScopeId();
|
int PS4_SYSV_ABI sceNetInetPtonWithScopeId();
|
||||||
int PS4_SYSV_ABI sceNetInfoDumpStart();
|
int PS4_SYSV_ABI sceNetInfoDumpStart();
|
||||||
int PS4_SYSV_ABI sceNetInfoDumpStop();
|
int PS4_SYSV_ABI sceNetInfoDumpStop();
|
||||||
|
Loading…
Reference in New Issue
Block a user