diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2006-08-31 23:47:16 -0400 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2006-08-31 23:47:16 -0400 |
commit | a8251776b87f78e47d3e73309177e3a4f59675bd (patch) | |
tree | b35d2bfe2dafc68aa43eb32dfb0134e08c7b90f9 /WWW/Library/Implementation/www_tcp.h | |
parent | 38fbf2f2474aa1e66883014080fc504475297c4f (diff) | |
download | lynx-snapshots-a8251776b87f78e47d3e73309177e3a4f59675bd.tar.gz |
snapshot of project "lynx", label v2-8-6dev_19
Diffstat (limited to 'WWW/Library/Implementation/www_tcp.h')
-rw-r--r-- | WWW/Library/Implementation/www_tcp.h | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/WWW/Library/Implementation/www_tcp.h b/WWW/Library/Implementation/www_tcp.h index 7883ae03..6189ab1e 100644 --- a/WWW/Library/Implementation/www_tcp.h +++ b/WWW/Library/Implementation/www_tcp.h @@ -169,9 +169,21 @@ error Host character set is not ASCII. #define UCH(ch) ((unsigned char)(ch)) /* + * These parameters were provided by Nigel Horne, using BeOS professional 5.0 + */ +#ifdef __BEOS__ +#undef NETREAD +#undef NETWRITE +#undef NETCLOSE +#define NETREAD(s,b,l) recv((s),(b),(l),0) +#define NETWRITE(s,b,l) send((s),(b),(l),0) +#define NETCLOSE(s) closesocket(s) +#endif + +/* IBM-PC running Windows NT - These parameters providede by Susan C. Weber <sweber@kyle.eitech.com>. + These parameters provided by Susan C. Weber <sweber@kyle.eitech.com>. */ #ifdef _WINDOWS @@ -705,7 +717,11 @@ typedef unsigned short mode_t; #define DECL_SYS_ERRLIST 1 #endif +#if defined(VMS) +#define socklen_t unsigned +#else #define socklen_t int /* used for default LY_SOCKLEN definition */ +#endif #endif /* !HAVE_CONFIG_H */ |