mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
Respect passed parameters in unix_socket
This commit is contained in:
parent
463ebe7a7c
commit
71073c19b6
@ -858,16 +858,14 @@ int unix_close(int fd)
|
||||
return ret;
|
||||
}
|
||||
|
||||
int unix_socket(int /*domain*/, int /*type*/, int /*protocol*/)
|
||||
int unix_socket(int domain, int type, int protocol)
|
||||
{
|
||||
int osock = socket(PF_INET, SOCK_STREAM, 0);
|
||||
|
||||
/******************* WINDOWS SPECIFIC PART ******************/
|
||||
#ifdef WINDOWS_SYS // WINDOWS
|
||||
int osock = socket(domain, type, protocol);
|
||||
|
||||
#ifdef WINDOWS_SYS
|
||||
#ifdef NET_DEBUG
|
||||
std::cerr << "unix_socket()" << std::endl;
|
||||
#endif
|
||||
#endif // NET_DEBUG
|
||||
|
||||
if ((unsigned) osock == INVALID_SOCKET)
|
||||
{
|
||||
@ -875,8 +873,8 @@ int unix_socket(int /*domain*/, int /*type*/, int /*protocol*/)
|
||||
osock = -1;
|
||||
errno = WinToUnixError(WSAGetLastError());
|
||||
}
|
||||
#endif
|
||||
/******************* WINDOWS SPECIFIC PART ******************/
|
||||
#endif // WINDOWS_SYS
|
||||
|
||||
return osock;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user