Explorar o código

Fix closing of Win32 socket

Win32 uses a specific function to close socket.
Reported by Petr Parýzek.
Stéphane Raimbault %!s(int64=14) %!d(string=hai) anos
pai
achega
fd892617f0
Modificáronse 2 ficheiros con 3 adicións e 0 borrados
  1. 2 0
      NEWS
  2. 1 0
      src/modbus-tcp.c

+ 2 - 0
NEWS

@@ -1,6 +1,8 @@
 libmodbus 2.9.3 (2011-01-XX)
 ============================
 
+- Fix closing of Win32 socket.
+  Reported by Petr Parýzek.
 - Fix unit identifier not copied by the TCP server.
   Reported by Antti Manninen.
 - New function to reply to an indication with an exception message

+ 1 - 0
src/modbus-tcp.c

@@ -27,6 +27,7 @@
 # include <winsock2.h>
 # include <ws2tcpip.h>
 # define SHUT_RDWR 2
+# define close closesocket
 #else
 # include <sys/socket.h>
 # include <sys/ioctl.h>