version 1.6 | | version 1.7 |
---|
| | |
/* | | /* |
* static char *rcsid_init_c = | | * static char *rcsid_init_c = |
* "$Id: request.c,v 1.6 2001/02/03 05:30:18 cvs Exp $"; | | * "$Id: request.c,v 1.7 2001/04/06 00:44:04 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 |
#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 |
| | |
#ifdef HAVE_UNISTD_H | | #ifdef HAVE_UNISTD_H |
#include <unistd.h> | | #include <unistd.h> |