mirror of
https://github.com/Lime3DS/Lime3DS
synced 2024-11-01 20:57:52 +00:00
But of course, Windows uses 'int' while Linux uses 'socklen_t'
This commit is contained in:
parent
b8422b24bd
commit
64815a8b16
1 changed files with 4 additions and 0 deletions
|
@ -729,7 +729,11 @@ static void GetSockOpt(Service::Interface* self) {
|
|||
u32 socket_handle = cmd_buffer[1];
|
||||
u32 level = cmd_buffer[2];
|
||||
u32 optname = cmd_buffer[3];
|
||||
#ifdef _WIN32
|
||||
int optlen = (int)cmd_buffer[4];
|
||||
#else
|
||||
socklen_t optlen = (socklen_t)cmd_buffer[4];
|
||||
#endif
|
||||
|
||||
// 0x100 = static buffer offset (bytes)
|
||||
// + 0x4 = 2nd pointer (u32) position
|
||||
|
|
Loading…
Reference in a new issue