Skip to content
Snippets Groups Projects
Commit 9c3bc8b2 authored by Jan David Mol's avatar Jan David Mol
Browse files

Task #8444: Let getSocketPort return 0 instead of -1 if port could not be...

Task #8444: Let getSocketPort return 0 instead of -1 if port could not be determined. This makes code a bit easier.
parent f1d30f85
No related branches found
No related tags found
No related merge requests found
......@@ -115,10 +115,10 @@ namespace LOFAR {
THROW_SYSCALL("getsockname");
if (sin.sin_family != AF_INET)
return -1;
return 0;
if (addrlen != sizeof sin)
return -1;
return 0;
return ntohs(sin.sin_port);
}
......
......@@ -44,7 +44,7 @@ namespace LOFAR {
// Retrieve the IP of an interface ("eth0") as an 'ifreq' struct, which can be used as sockaddr.
struct sockaddr getInterfaceIP(const std::string &iface);
// Returns the TCP/UDP port number allocated to a socket
// Returns the TCP/UDP port number allocated to a socket, or 0 if unknown.
int getSocketPort(int fd);
}
......
......@@ -139,12 +139,9 @@ SocketStream::SocketStream(const std::string &hostname, uint16 _port, Protocol p
if (port == 0) {
// we let OS search for a free port
int actual_port = getSocketPort(fd);
port = getSocketPort(fd);
LOG_DEBUG(str(boost::format("Bound socket %s to port %s") % description % actual_port));
// we can't accept -1
if (actual_port >= 0) port = actual_port;
LOG_DEBUG(str(boost::format("Bound socket %s to port %s") % description % port));
}
if (protocol == TCP) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment