From 52a644cbda06985def76b077e541a88d1f60e61d Mon Sep 17 00:00:00 2001 From: "Andrew M. Kuchling" Date: Fri, 31 Mar 2000 17:24:30 +0000 Subject: Add '#include ' "man tcp" on Solaris says that TCP_NODELAY is defined in netinet/tcp.h, and the Open Groups Unix98 spec agrees (http://www.opengroup.org/onlinepubs/009619199/ninettcp.htm). --- Modules/socketmodule.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c index 9798dea..a6f4664 100644 --- a/Modules/socketmodule.c +++ b/Modules/socketmodule.c @@ -163,6 +163,7 @@ int shutdown( int, int ); #include #include #include +#include /* Headers needed for inet_ntoa() and inet_addr() */ #ifdef __BEOS__ -- cgit v0.12