Browse Source

Avoid twice connect() in source code (closes #194)

Stéphane Raimbault 11 years ago
parent
commit
29851c2fa9
1 changed files with 1 additions and 5 deletions
  1. 1 5
      src/modbus-tcp.c

+ 1 - 5
src/modbus-tcp.c

@@ -266,20 +266,16 @@ static int _modbus_tcp_set_ipv4_options(int s)
 static int _connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen,
 static int _connect(int sockfd, const struct sockaddr *addr, socklen_t addrlen,
                     const struct timeval *ro_tv)
                     const struct timeval *ro_tv)
 {
 {
-    int rc;
+    int rc = connect(sockfd, addr, addrlen);
 
 
 #ifdef OS_WIN32
 #ifdef OS_WIN32
     int wsaError = 0;
     int wsaError = 0;
-
-    rc = connect(sockfd, addr, addrlen);
     if (rc == -1) {
     if (rc == -1) {
         wsaError = WSAGetLastError();
         wsaError = WSAGetLastError();
     }
     }
 
 
     if (wsaError == WSAEWOULDBLOCK || wsaError == WSAEINPROGRESS) {
     if (wsaError == WSAEWOULDBLOCK || wsaError == WSAEINPROGRESS) {
 #else
 #else
-
-    rc = connect(sockfd, addr, addrlen);
     if (rc == -1 && errno == EINPROGRESS) {
     if (rc == -1 && errno == EINPROGRESS) {
 #endif
 #endif
         fd_set wset;
         fd_set wset;