3 System dependencies for DEC Alpha/OSF1... */
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>
51 #include <net/if_dl.h>
53 /* Define the basic integer types... */
54 #if !defined (__BIT_TYPES_DEFINED__)
56 typedef short int16_t;
59 typedef unsigned char u_int8_t
;
60 typedef unsigned short u_int16_t
;
61 typedef unsigned int u_int32_t
;
62 typedef unsigned long u_int64_t
;
65 /* Varargs stuff... */
67 #define VA_DOTDOTDOT ...
70 #define VA_start(list, last) va_start (list, last)
72 /* Our reports say that OSF/1 versions 4.0G and later have v/snprintf
73 * implementations. 4.0F and previous do not. This is detected at
74 * ./configure time from 'sizer -v'.
80 #ifndef _PATH_DHCPD_PID
81 #define _PATH_DHCPD_PID "/var/run/dhcpd.pid"
83 #ifndef _PATH_DHCLIENT_PID
84 #define _PATH_DHCLIENT_PID "/var/run/dhclient.pid"
88 #define VOIDPTR void *
93 #define GET_TIME(x) time ((x))
95 /* The jmp_buf type is an array on OSF/1, so we can't dereference it
96 and must declare it differently. */
97 #define jbp_decl(x) jmp_buf x
100 #define jrefproto jmp_buf
102 #define NEED_OSF_PFILT_HACKS
103 #define BPF_FORMAT "/dev/pf/pfilt%d"
105 #if defined (USE_DEFAULT_NETWORK)
108 # define FDDI_HEADER_SIZE 14
111 #define PTRSIZE_64BIT
113 #define SOCKLEN_T int
115 #ifdef NEED_PRAND_CONF
116 const char *cmds
[] = {
118 "/usr/sbin/arp -an 2>&1",
119 "/usr/sbin/netstat -an 2>&1",
121 "/usr/bin/dig com. soa +ti=1 +retry=0 2>&1",
122 "/usr/ucb/uptime 2>&1",
123 "/usr/sbin/netstat -an 2>&1",
128 const char *dirs
[] = {
141 const char *files
[] = {
147 #endif /* NEED_PRAND_CONF */