summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2017-12-08 10:21:05 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2017-12-08 10:21:05 +0100
commitb46e85e5678e06ec10eea69cacf11bb57eeb1fcf (patch)
tree98e8ff94695ef7fcba81788ef48be5e09c1c738a /src
parent041b82e6ce6c7c5af945211c267f179da4bd298d (diff)
downloaddabmux-b46e85e5678e06ec10eea69cacf11bb57eeb1fcf.tar.gz
dabmux-b46e85e5678e06ec10eea69cacf11bb57eeb1fcf.tar.bz2
dabmux-b46e85e5678e06ec10eea69cacf11bb57eeb1fcf.zip
Explicity call ::bind()
Diffstat (limited to 'src')
-rw-r--r--src/TcpSocket.cpp2
-rw-r--r--src/UdpSocket.cpp2
2 files changed, 2 insertions, 2 deletions
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");
diff --git a/src/UdpSocket.cpp b/src/UdpSocket.cpp
index 981d713..3d015ec 100644
--- a/src/UdpSocket.cpp
+++ b/src/UdpSocket.cpp
@@ -88,7 +88,7 @@ int UdpSocket::reinit(int port, const std::string& name)
address.setAddress(name);
address.setPort(port);
- if (bind(listenSocket, address.getAddress(), sizeof(sockaddr_in)) == SOCKET_ERROR) {
+ if (::bind(listenSocket, address.getAddress(), sizeof(sockaddr_in)) == SOCKET_ERROR) {
setInetError("Can't bind socket");
::close(listenSocket);
listenSocket = INVALID_SOCKET;