fix compiplation error on MacOS

This commit is contained in:
Volker Fischer 2018-02-25 08:50:58 +00:00
parent b0d37c86e7
commit 6c8362ea3a

View File

@ -66,7 +66,7 @@ void CSocket::Init ( const quint16 iPortNumber )
{
UdpSocketInAddr.sin_port = htons ( iPortNumber + iClientPortIncrement );
bSuccess = ( bind ( UdpSocket ,
bSuccess = ( ::bind ( UdpSocket ,
(sockaddr*) &UdpSocketInAddr,
sizeof ( sockaddr_in ) ) == 0 );
@ -80,7 +80,7 @@ void CSocket::Init ( const quint16 iPortNumber )
// gets the desired port number
UdpSocketInAddr.sin_port = htons ( iPortNumber );
bSuccess = ( bind ( UdpSocket ,
bSuccess = ( ::bind ( UdpSocket ,
(sockaddr*) &UdpSocketInAddr,
sizeof ( sockaddr_in ) ) == 0 );
}