3 System dependencies for FreeBSD... */
6 * Copyright (c) 2004 by Internet Systems Consortium, Inc. ("ISC")
7 * Copyright (c) 1996-2003 by Internet Software Consortium
9 * Permission to use, copy, modify, and distribute this software for any
10 * purpose with or without fee is hereby granted, provided that the above
11 * copyright notice and this permission notice appear in all copies.
13 * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
14 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
16 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
17 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
18 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
19 * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
21 * Internet Systems Consortium, Inc.
23 * Redwood City, CA 94063
27 * This software has been written for Internet Systems Consortium
28 * by Ted Lemon in cooperation with Vixie Enterprises and Nominum, Inc.
29 * To learn more about Internet Systems Consortium, see
30 * ``http://www.isc.org/''. To learn more about Vixie Enterprises,
31 * see ``http://www.vix.com''. To learn more about Nominum, Inc., see
32 * ``http://www.nominum.com''.
36 #include <sys/types.h>
49 #include <net/if_dl.h>
50 #include <net/if_arp.h>
51 #if !defined (INADDR_LOOPBACK)
52 # define INADDR_LOOPBACK ((u_int32_t)0x7f000001)
55 /* Varargs stuff... */
57 #define VA_DOTDOTDOT ...
59 #define VA_start(list, last) va_start (list, last)
61 #if defined(__alpha__) || defined(__amd64__) || defined(__ia64__) || \
63 # define PTRSIZE_64BIT
66 #ifndef _PATH_DHCPD_PID
67 #define _PATH_DHCPD_PID "/var/run/dhcpd.pid"
69 #ifndef _PATH_DHCPD_DB
70 #define _PATH_DHCPD_DB "/var/db/dhcpd.leases"
72 #ifndef _PATH_DHCLIENT_PID
73 #define _PATH_DHCLIENT_PID "/var/run/dhclient.pid"
75 #ifndef _PATH_DHCLIENT_DB
76 #define _PATH_DHCLIENT_DB "/var/db/dhclient.leases"
80 #define VOIDPTR void *
85 #define GET_TIME(x) time ((x))
89 /* socklen_t was first defined on November 24 in sys/socket.h, and
90 __FreeBSD_version was changed to 400013 on December 4, so if you
91 get a compile error on this, and you updated between those dates,
92 that's why. Also, it may be that some 3.x version after 3.4 will
93 have socklen_t, but no such change has been made so far. */
95 #if __FreeBSD_version < 400013
99 #if defined (USE_DEFAULT_NETWORK)
103 #ifdef NEED_PRAND_CONF
104 #ifndef HAVE_DEV_RANDOM
105 # define HAVE_DEV_RANDOM 1
106 #endif /* HAVE_DEV_RANDOM */
108 /*const char *cmds[] = {
109 "/bin/ps -axlw 2>&1",
110 "/usr/sbin/arp -an 2>&1",
111 "/usr/bin/netstat -an 2>&1",
113 "/usr/bin/dig com. soa +ti=1 +retry=0 2>&1",
114 "/usr/bin/netstat -an 2>&1",
115 "/usr/bin/dig . soa +ti=1 +retry=0 2>&1",
116 "/usr/sbin/iostat 2>&1",
117 "/usr/bin/vmstat 2>&1",
122 const char *dirs[] = {
135 const char *files[] = {
142 #endif /* NEED_PRAND_CONF */