diff options
author | louiz’ <louiz@louiz.org> | 2016-11-15 00:49:55 +0100 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-11-15 00:49:55 +0100 |
commit | 4ab3cd653f3eb19ff82838f777984c9d16e64a80 (patch) | |
tree | fd11fe72ee6961f7a9537c5ad403dff44db7325d /louloulibs | |
parent | d872c2b49214c0a4db40a9e2d860802d9eedc563 (diff) | |
download | biboumi-4ab3cd653f3eb19ff82838f777984c9d16e64a80.tar.gz biboumi-4ab3cd653f3eb19ff82838f777984c9d16e64a80.tar.bz2 biboumi-4ab3cd653f3eb19ff82838f777984c9d16e64a80.tar.xz biboumi-4ab3cd653f3eb19ff82838f777984c9d16e64a80.zip |
Fix some little compilation errors with some configs, from last commit
Diffstat (limited to 'louloulibs')
-rw-r--r-- | louloulibs/network/tcp_client_socket_handler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/louloulibs/network/tcp_client_socket_handler.cpp b/louloulibs/network/tcp_client_socket_handler.cpp index dc9221d..2e90ea1 100644 --- a/louloulibs/network/tcp_client_socket_handler.cpp +++ b/louloulibs/network/tcp_client_socket_handler.cpp @@ -161,14 +161,14 @@ void TCPClientSocketHandler::connect(const std::string& address, const std::stri struct sockaddr_in6 a; socklen_t l = sizeof(a); if (::getsockname(this->socket, (struct sockaddr*)&a, &l) != -1) - this->local_port = ::ntohs(a.sin6_port); + this->local_port = ntohs(a.sin6_port); } else if (rp->ai_family == AF_INET) { struct sockaddr_in a; socklen_t l = sizeof(a); if (::getsockname(this->socket, (struct sockaddr*)&a, &l) != -1) - this->local_port = ::ntohs(a.sin_port); + this->local_port = ntohs(a.sin_port); } log_debug("Local port: ", this->local_port, ", and remote port: ", this->port); |