* Copyright (C) 1995-2005, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: tcpdchk.c,v 1.6 2005-01-16 21:51:50 adam Exp $
+ * $Id: tcpdchk.c,v 1.7 2005-01-17 10:29:25 adam Exp $
*/
/**
* \file tcpdchk.c
#include <stdio.h>
#include <string.h>
+#if HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
+
#ifdef WIN32
#include <winsock.h>
#else
+#include <netinet/in.h>
#include <netdb.h>
#include <arpa/inet.h>
+#include <netinet/tcp.h>
+#endif
+
+#if HAVE_SYS_SOCKET_H
+#include <sys/socket.h>
#endif
#include <yaz/yconfig.h>
* Copyright (C) 1995-2005, Index Data ApS
* See the file LICENSE for details.
*
- * $Id: unix.c,v 1.9 2005-01-16 21:51:50 adam Exp $
+ * $Id: unix.c,v 1.10 2005-01-17 10:29:00 adam Exp $
* UNIX socket COMSTACK. By Morten Bøgeskov.
*/
/**
#include <string.h>
#include <stdlib.h>
#include <errno.h>
+#if HAVE_SYS_TYPES_H
+#include <sys/types.h>
+#endif
#if HAVE_UNISTD_H
#include <unistd.h>
#endif
#if HAVE_PWD_H
#include <pwd.h>
#endif
-#if HAVE_SYS_TYPES_H
-#include <sys/types.h>
-#endif
#if HAVE_SYS_SOCKET_H
#include <sys/socket.h>