version 1.7 | | version 1.8 |
---|
| | |
/* | | /* |
* static char *rcsid_init_c = | | * static char *rcsid_init_c = |
* "$Id: request.c,v 1.7 2001/04/06 00:44:04 michtoen Exp $"; | | * "$Id: request.c,v 1.8 2001/04/06 19:08:18 michtoen Exp $"; |
*/ | | */ |
| | |
/* | | /* |
| | |
/* This block is basically taken from socket.c - I assume if it works there, | | /* This block is basically taken from socket.c - I assume if it works there, |
* it should work here. | | * it should work here. |
*/ | | */ |
#ifndef WIN32 // ---win32 exclude unix headers | | #ifndef WIN32 /* ---win32 exclude unix headers */ |
#include <sys/types.h> | | #include <sys/types.h> |
#include <sys/time.h> | | #include <sys/time.h> |
#include <sys/socket.h> | | #include <sys/socket.h> |
#include <netinet/in.h> | | #include <netinet/in.h> |
#include <netdb.h> | | #include <netdb.h> |
#endif // win32 | | #endif /* win32 */ |
| | |
#ifdef HAVE_UNISTD_H | | #ifdef HAVE_UNISTD_H |
#include <unistd.h> | | #include <unistd.h> |