mirror of
https://github.com/wolfpld/tracy.git
synced 2024-11-10 10:41:50 +00:00
Set options for proper socket.
This commit is contained in:
parent
687915299a
commit
d0d5184c04
@ -103,7 +103,7 @@ bool Socket::Connect( const char* addr, const char* port )
|
|||||||
if( ( sock = socket( ptr->ai_family, ptr->ai_socktype, ptr->ai_protocol ) ) == -1 ) continue;
|
if( ( sock = socket( ptr->ai_family, ptr->ai_socktype, ptr->ai_protocol ) ) == -1 ) continue;
|
||||||
#if defined __APPLE__
|
#if defined __APPLE__
|
||||||
int val = 1;
|
int val = 1;
|
||||||
setsockopt( m_sock, SOL_SOCKET, SO_NOSIGPIPE, &val, sizeof( val ) );
|
setsockopt( sock, SOL_SOCKET, SO_NOSIGPIPE, &val, sizeof( val ) );
|
||||||
#endif
|
#endif
|
||||||
if( connect( sock, ptr->ai_addr, ptr->ai_addrlen ) == -1 )
|
if( connect( sock, ptr->ai_addr, ptr->ai_addrlen ) == -1 )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user