std namespace checks that need to be fixed in c++17

using namespace std is causing issues with bind, using :: to workaround for now until c++17 update
This commit is contained in:
Image 2020-12-20 17:45:03 -05:00
parent 091f962210
commit d82d5cf9bd
2 changed files with 2 additions and 2 deletions

View file

@ -121,7 +121,7 @@ struct sockaddr_in address;
return false;
}
if (bind(sock, (struct sockaddr *) &address, sizeof(address)) < 0) {
if (::bind(sock, (struct sockaddr *) &address, sizeof(address)) < 0) {
//close(sock);
sock=-1;
return false;

View file

@ -1582,7 +1582,7 @@ bool TCPServer::Open(int16 in_port, char* errbuf) {
setsockopt(sock, SOL_SOCKET, SO_REUSEADDR, (char *) &reuse_addr, sizeof(reuse_addr));
if (bind(sock, (struct sockaddr *) &address, sizeof(address)) < 0) {
if (::bind(sock, (struct sockaddr *) &address, sizeof(address)) < 0) {
#ifdef WIN32
closesocket(sock);
#else