3 Configuration file for HP-UX */
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''.
39 #define u_int8_t unsigned char
40 #define u_int16_t unsigned short
41 #define u_int32_t unsigned long
43 #include <sys/types.h>
58 #include <net/if_arp.h>
60 #define htons(x) (x) /* sigh */
62 #ifndef _PATH_DHCPD_PID
63 #define _PATH_DHCPD_PID "/etc/dhcpd.pid"
65 #ifndef _PATH_DHCLIENT_PID
66 #define _PATH_DHCLIENT_PID "/etc/dhclient.pid"
68 #ifndef _PATH_DHCRELAY_PID
69 #define _PATH_DHCRELAY_PID "/etc/dhcrelay.pid"
72 #if !defined (__ANSI__)
73 /* Varargs stuff: use stdarg.h instead ... */
75 #define VA_DOTDOTDOT ...
76 #define VA_start(list, last) va_start (list, last)
80 #define VA_DOTDOTDOT va_alist
81 #define VA_start(list, last) va_start (list)
86 #define VOIDPTR void *
91 #define GET_TIME(x) time ((x))
95 #define BYTE_ORDER BIG_ENDIAN
100 #ifdef NEED_PRAND_CONF
101 const char *cmds
[] = {
102 "/usr/bin/ps -ef 2>&1",
103 "/usr/sbin/arp -an 2>&1",
104 "/usr/bin/netstat -an 2>&1",
106 "/usr/bin/netstat -an 2>&1",
107 "/usr/bin/vmstat 2>&1",
112 const char *dirs
[] = {
125 const char *files
[] = {
129 #endif /* NEED_PRAND_CONF */
131 /* these are #defined somewhere in /usr/include headers. */