1
1

Win32 has no ENOTCONN - checked MSVC6, MingW32, Borland C++ 5.5, OpenWatcom 1.6; all have this define in winsock2.h but blocked with '#if 0';

changed to configure defines to control inclusion of headers from libssh2_config.h
Этот коммит содержится в:
Guenter Knauf 2007-04-12 22:18:27 +00:00
родитель 8371fa7b87
Коммит 159c351d05

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

@ -37,7 +37,7 @@
#include "libssh2_priv.h"
#include <errno.h>
#ifndef WIN32
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#include <stdlib.h>
@ -101,7 +101,7 @@ static int libssh2_banner_receive(LIBSSH2_SESSION *session)
break;
case WSAENOTCONN:
case WSAECONNABORTED:
errno = ENOTCONN;
errno = WSAENOTCONN;
break;
case WSAEINTR:
errno = EINTR;