Updated support for NetWare, submitted by Verdon Walker <VWalker@novell.com>.

PR: 1098
This commit is contained in:
Richard Levitte
2005-06-05 21:46:57 +00:00
parent 266958bce7
commit e2414b41ad
5 changed files with 65 additions and 60 deletions

6
e_os.h
View File

@@ -438,11 +438,7 @@ extern HINSTANCE _hInstance;
# elif defined(OPENSSL_SYS_NETWARE)
/* NetWare uses the WinSock2 interfaces
*/
# if defined(NETWARE_CLIB)
# include <ws2nlm.h>
# elif defined(NETWARE_LIBC)
# include <novsock2.h>
# endif
# include <novsock2.h>
# define SSLeay_Write(a,b,c) send((a),(b),(c),0)
# define SSLeay_Read(a,b,c) recv((a),(b),(c),0)
# define SHUTDOWN(fd) { shutdown((fd),0); closesocket(fd); }