1
1

Use closesocket in server.c for win32

Resolves #56
Этот коммит содержится в:
Aris Adamantiadis 2010-02-11 19:54:57 +01:00
родитель 17ca9d9da7
Коммит 9bec3ee48e

Просмотреть файл

@ -278,7 +278,11 @@ void ssh_bind_free(ssh_bind sshbind){
} }
if (sshbind->bindfd >= 0) { if (sshbind->bindfd >= 0) {
#ifdef _WIN32
closesocket(sshbind->bindfd);
#else
close(sshbind->bindfd); close(sshbind->bindfd);
#endif
} }
sshbind->bindfd = -1; sshbind->bindfd = -1;