2005-02-05 02:12:01 +08:00
|
|
|
/*
|
2006-04-26 04:26:28 +08:00
|
|
|
* Id: $Id$
|
2005-02-05 02:12:01 +08:00
|
|
|
* -------------------------------------------------------------------------------------------------
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU General Public License as published by the Free Software Foundation; You may only use
|
|
|
|
* version 2 of the License, you have no option to use any other version.
|
2003-08-25 04:05:32 +08:00
|
|
|
*
|
2005-02-05 02:12:01 +08:00
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
|
|
|
|
* the GNU General Public License for more details.
|
2003-08-25 04:05:32 +08:00
|
|
|
*
|
2005-02-05 02:12:01 +08:00
|
|
|
* You should have received a copy of the GNU General Public License along with this program; if
|
|
|
|
* not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
2003-08-25 04:05:32 +08:00
|
|
|
*
|
2005-02-05 02:12:01 +08:00
|
|
|
* -------------------------------------------------------------------------------------------------
|
|
|
|
*/
|
2003-08-25 04:05:32 +08:00
|
|
|
#ifndef _OS_H
|
2003-08-26 05:08:58 +08:00
|
|
|
#define _OS_H
|
|
|
|
|
2003-08-25 04:05:32 +08:00
|
|
|
#if defined (__sun__)
|
2006-12-18 03:44:57 +08:00
|
|
|
# define __Solaris__ 1
|
2003-08-25 04:05:32 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __HPUX__ /* H P U X */
|
2006-12-18 03:44:57 +08:00
|
|
|
# define _XOPEN_SOURCE_EXTENDED
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <stropts.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <sys/stdsyms.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <sys/mib.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
# include <net/if.h>
|
2005-02-05 02:12:01 +08:00
|
|
|
#elif __APPLE__ /* Mac OS X */
|
2006-12-18 03:44:57 +08:00
|
|
|
# include <stdio.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <curses.h>
|
|
|
|
# include <ifaddrs.h>
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <sys/sysctl.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/route.h>
|
|
|
|
# include <net/if_dl.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <net/if_media.h>
|
|
|
|
# include <net/if_mib.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
#elif __DragonFly__ /* D R A G O N F L Y */
|
|
|
|
# include <stdio.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <sys/sysctl.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <net/if_media.h>
|
|
|
|
# include <net/if_mib.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
# include <net/ppp_layer/ppp_defs.h>
|
|
|
|
# include <net/ppp/if_ppp.h>
|
2010-10-13 08:12:55 +08:00
|
|
|
#elif __FreeBSD__ || __FreeBSD_kernel__ /* F R E E B S D */
|
2006-12-18 03:44:57 +08:00
|
|
|
# include <stdio.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <sys/sysctl.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <net/if_media.h>
|
|
|
|
# include <net/if_mib.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
# include <net/ppp_defs.h>
|
|
|
|
# include <net/if_ppp.h>
|
2003-08-25 04:05:32 +08:00
|
|
|
#elif __NetBSD__ /* N E T B S D */
|
2006-12-18 03:44:57 +08:00
|
|
|
# include <stdio.h>
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <sys/sysctl.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <net/if_media.h>
|
|
|
|
# include <net/route.h>
|
|
|
|
# include <net/if_dl.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
# include <net/ppp_defs.h>
|
|
|
|
# include <net/if_ppp.h>
|
|
|
|
# include <net/if.h>
|
2003-08-25 04:05:32 +08:00
|
|
|
#elif __OpenBSD__ || __MicroBSD__ /* O P E N B S D */
|
2006-12-18 03:44:57 +08:00
|
|
|
# include <stdio.h>
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <sys/sysctl.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <net/if_media.h>
|
|
|
|
# include <net/if_dl.h>
|
|
|
|
# include <net/route.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
# include <net/ppp_defs.h>
|
|
|
|
# include <net/if_ppp.h>
|
2003-08-25 04:05:32 +08:00
|
|
|
#elif __linux__ /* L I N U X */
|
2006-12-18 03:44:57 +08:00
|
|
|
# include <stdio.h>
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <sys/sysctl.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
# include <net/ppp_defs.h>
|
|
|
|
# include <net/if_ppp.h>
|
2003-08-25 04:05:32 +08:00
|
|
|
#elif __Solaris__ /* S O L A R I S */
|
2006-12-18 03:44:57 +08:00
|
|
|
# include <stdio.h>
|
|
|
|
# define _WIDEC_H
|
|
|
|
# include <sys/param.h>
|
|
|
|
# include <stdlib.h>
|
|
|
|
# include <stdarg.h>
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <string.h>
|
|
|
|
# include <time.h>
|
|
|
|
# include <ctype.h>
|
|
|
|
# include <signal.h>
|
|
|
|
# include <sys/wait.h>
|
|
|
|
# include <sys/stat.h>
|
|
|
|
# include <sys/ioctl.h>
|
|
|
|
# include <sys/types.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/time.h>
|
|
|
|
# include <netinet/in.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <stropts.h>
|
|
|
|
# include <sys/socket.h>
|
|
|
|
# include <sys/sockio.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <kstat.h>
|
|
|
|
# include <net/if.h>
|
|
|
|
# include <sys/sockio.h>
|
|
|
|
# include <arpa/inet.h>
|
|
|
|
# include <net/if.h>
|
2003-08-25 04:05:32 +08:00
|
|
|
#else
|
2006-12-18 03:44:57 +08:00
|
|
|
# error "OS not supported"
|
2003-08-25 04:05:32 +08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|