From c952eb84ae90123ac62bbc51ede10330037f3f3d Mon Sep 17 00:00:00 2001 From: dan Date: Tue, 14 Dec 1999 01:21:56 +0000 Subject: [PATCH] Fixed a platform dependant problem. --- WINGs/connection.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/WINGs/connection.c b/WINGs/connection.c index 1bd76d5d..bcf2a682 100644 --- a/WINGs/connection.c +++ b/WINGs/connection.c @@ -56,11 +56,13 @@ #endif /* Stuff for setting the sockets into non-blocking mode. */ -#ifdef __POSIX_SOURCE +/*#ifdef __POSIX_SOURCE # define NONBLOCK_OPT O_NONBLOCK #else # define NONBLOCK_OPT FNDELAY -#endif +#endif*/ + +#define NONBLOCK_OPT O_NONBLOCK #define NETBUF_SIZE 4096 -- 2.11.4.GIT