1 /***************************************************************************
2 * Copyright (C) 2006 by Dominic Rath <Dominic.Rath@gmx.de> *
3 * Copyright (C) 2007-2008 by Øyvind Harboe <oyvind.harboe@zylin.com> *
4 * Copyright (C) 2008 by Spencer Oliver <spen@spen-soft.co.uk> *
5 * Copyright (C) 2009 by Zachary T Welch <zw@superlucidity.net> *
7 * This program is free software; you can redistribute it and/or modify *
8 * it under the terms of the GNU General Public License as published by *
9 * the Free Software Foundation; either version 2 of the License, or *
10 * (at your option) any later version. *
12 * This program is distributed in the hope that it will be useful, *
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
15 * GNU General Public License for more details. *
17 * You should have received a copy of the GNU General Public License *
18 * along with this program; if not, write to the *
19 * Free Software Foundation, Inc., *
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
21 ***************************************************************************/
26 /* standard C library header files */
34 /* +++ AC_HEADER_TIME +++ */
35 #ifdef TIME_WITH_SYS_TIME
36 # include <sys/time.h>
39 # ifdef HAVE_SYS_TIME_H
40 # include <sys/time.h>
45 /* --- AC_HEADER_TIME --- */
47 /* +++ platform specific headers +++ */
51 #include <sys/types.h>
54 /* --- platform specific headers --- */
56 #ifdef HAVE_SYS_SOCKET_H
57 #include <sys/socket.h>
64 /* missing from eCos */
66 #define EFAULT 14 /* Bad address */
70 #ifdef HAVE_NETINET_IN_H
71 #include <netinet/in.h>
73 #ifdef HAVE_SYS_SELECT_H
74 #include <sys/select.h> /* select, FD_SET and friends (POSIX.1-2001) */
76 #ifdef HAVE_SYS_PARAM_H
77 #include <sys/param.h> /* for MIN/MAX macros */