From b46e85e5678e06ec10eea69cacf11bb57eeb1fcf Mon Sep 17 00:00:00 2001 From: "Matthias P. Braendli" Date: Fri, 8 Dec 2017 10:21:05 +0100 Subject: Explicity call ::bind() --- src/TcpSocket.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/TcpSocket.cpp') diff --git a/src/TcpSocket.cpp b/src/TcpSocket.cpp index b233c9f..76e9c2e 100644 --- a/src/TcpSocket.cpp +++ b/src/TcpSocket.cpp @@ -66,7 +66,7 @@ TcpSocket::TcpSocket(int port, const string& name) : m_own_address.setAddress(name); m_own_address.setPort(port); - if (bind(m_sock, m_own_address.getAddress(), sizeof(sockaddr_in)) == SOCKET_ERROR) { + if (::bind(m_sock, m_own_address.getAddress(), sizeof(sockaddr_in)) == SOCKET_ERROR) { ::close(m_sock); m_sock = INVALID_SOCKET; throw std::runtime_error("Can't bind socket"); -- cgit v1.2.3