Home | History | Annotate | Download | only in arpa
      1 /*  DO NOT EDIT THIS FILE.
      2 
      3     It has been auto-edited by fixincludes from:
      4 
      5 	"/tmp/ndk-User/build/toolchain/prefix/sysroot/usr/include/arpa/nameser_compat.h"
      6 
      7     This had to be done to correct non-standard usages in the
      8     original, manufacturer supplied header file.  */
      9 
     10 /*	$NetBSD: nameser_compat.h,v 1.1.1.2 2004/11/07 01:28:27 christos Exp $	*/
     11 
     12 /* Copyright (c) 1983, 1989
     13  *    The Regents of the University of California.  All rights reserved.
     14  *
     15  * Redistribution and use in source and binary forms, with or without
     16  * modification, are permitted provided that the following conditions
     17  * are met:
     18  * 1. Redistributions of source code must retain the above copyright
     19  *    notice, this list of conditions and the following disclaimer.
     20  * 2. Redistributions in binary form must reproduce the above copyright
     21  *    notice, this list of conditions and the following disclaimer in the
     22  *    documentation and/or other materials provided with the distribution.
     23  * 3. All advertising materials mentioning features or use of this software
     24  *    must display the following acknowledgement:
     25  * 	This product includes software developed by the University of
     26  * 	California, Berkeley and its contributors.
     27  * 4. Neither the name of the University nor the names of its contributors
     28  *    may be used to endorse or promote products derived from this software
     29  *    without specific prior written permission.
     30  *
     31  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     32  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     33  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     34  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     35  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     36  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     37  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     38  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     39  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     40  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     41  * SUCH DAMAGE.
     42  */
     43 
     44 /*
     45  *      from nameser.h	8.1 (Berkeley) 6/2/93
     46  *	Id: nameser_compat.h,v 1.8 2006/05/19 02:33:40 marka Exp
     47  */
     48 
     49 #ifndef _ARPA_NAMESER_COMPAT_
     50 #define	_ARPA_NAMESER_COMPAT_
     51 
     52 #define	__BIND		19950621	/* (DEAD) interface version stamp. */
     53 
     54 #include <endian.h>
     55 
     56 #ifndef BYTE_ORDER
     57 #if (BSD >= 199103)
     58 # include <machine/endian.h>
     59 #else
     60 #ifdef __linux__
     61 # include <endian.h>
     62 #else
     63 #define	LITTLE_ENDIAN	1234	/* least-significant byte first (vax, pc) */
     64 #define	BIG_ENDIAN	4321	/* most-significant byte first (IBM, net) */
     65 #define	PDP_ENDIAN	3412	/* LSB first in word, MSW first in long (pdp)*/
     66 
     67 #if defined(vax) || defined(ns32000) || defined(sun386) || defined(i386) || \
     68     defined(__MIPSEL__) || defined(_MIPSEL) || defined(BIT_ZERO_ON_RIGHT) || \
     69     defined(__i386__) || defined(__i386) || defined(__amd64__) || \
     70     defined(__x86_64__) || defined(__MIPSEL__) || defined(_MIPSEL) || \
     71     defined(BIT_ZERO_ON_RIGHT) || defined(__alpha__) || defined(__alpha) || \
     72     (defined(__Lynx__) && defined(__x86__))
     73 #define BYTE_ORDER	LITTLE_ENDIAN
     74 #endif
     75 
     76 #if defined(sel) || defined(pyr) || defined(mc68000) || defined(sparc) || \
     77     defined(is68k) || defined(tahoe) || defined(ibm032) || defined(ibm370) || \
     78     defined(MIPSEB) || defined(_MIPSEB) || defined(_IBMR2) || defined(DGUX) ||\
     79     defined(apollo) || defined(__convex__) || defined(_CRAY) || \
     80     defined(__hppa) || defined(__hp9000) || \
     81     defined(__hp9000s300) || defined(__hp9000s700) || \
     82     defined(__hp3000s900) || defined(__hpux) || defined(MPE) || \
     83     defined (BIT_ZERO_ON_LEFT) || defined(m68k) || defined(__sparc) ||  \
     84     (defined(__Lynx__) && \
     85      (defined(__68k__) || defined(__sparc__) || defined(__powerpc__)))
     86 #define BYTE_ORDER	BIG_ENDIAN
     87 #endif
     88 #endif /* __linux */
     89 #endif /* BSD */
     90 #endif /* BYTE_ORDER */
     91 
     92 #if !defined(BYTE_ORDER) || \
     93     (BYTE_ORDER != BIG_ENDIAN && BYTE_ORDER != LITTLE_ENDIAN && \
     94     BYTE_ORDER != PDP_ENDIAN)
     95 	/* you must determine what the correct bit order is for
     96 	 * your compiler - the next line is an intentional error
     97 	 * which will force your compiles to bomb until you fix
     98 	 * the above macros.
     99 	 */
    100   #error "Undefined or invalid BYTE_ORDER";
    101 #endif
    102 
    103 /*
    104  * Structure for query header.  The order of the fields is machine- and
    105  * compiler-dependent, depending on the byte/bit order and the layout
    106  * of bit fields.  We use bit fields only in int variables, as this
    107  * is all ANSI requires.  This requires a somewhat confusing rearrangement.
    108  */
    109 
    110 typedef struct {
    111 	unsigned	id :16;		/* query identification number */
    112 #if BYTE_ORDER == BIG_ENDIAN
    113 			/* fields in third byte */
    114 	unsigned	qr: 1;		/* response flag */
    115 	unsigned	opcode: 4;	/* purpose of message */
    116 	unsigned	aa: 1;		/* authoritive answer */
    117 	unsigned	tc: 1;		/* truncated message */
    118 	unsigned	rd: 1;		/* recursion desired */
    119 			/* fields in fourth byte */
    120 	unsigned	ra: 1;		/* recursion available */
    121 	unsigned	unused :1;	/* unused bits (MBZ as of 4.9.3a3) */
    122 	unsigned	ad: 1;		/* authentic data from named */
    123 	unsigned	cd: 1;		/* checking disabled by resolver */
    124 	unsigned	rcode :4;	/* response code */
    125 #endif
    126 #if BYTE_ORDER == LITTLE_ENDIAN || BYTE_ORDER == PDP_ENDIAN
    127 			/* fields in third byte */
    128 	unsigned	rd :1;		/* recursion desired */
    129 	unsigned	tc :1;		/* truncated message */
    130 	unsigned	aa :1;		/* authoritive answer */
    131 	unsigned	opcode :4;	/* purpose of message */
    132 	unsigned	qr :1;		/* response flag */
    133 			/* fields in fourth byte */
    134 	unsigned	rcode :4;	/* response code */
    135 	unsigned	cd: 1;		/* checking disabled by resolver */
    136 	unsigned	ad: 1;		/* authentic data from named */
    137 	unsigned	unused :1;	/* unused bits (MBZ as of 4.9.3a3) */
    138 	unsigned	ra :1;		/* recursion available */
    139 #endif
    140 			/* remaining bytes */
    141 	unsigned	qdcount :16;	/* number of question entries */
    142 	unsigned	ancount :16;	/* number of answer entries */
    143 	unsigned	nscount :16;	/* number of authority entries */
    144 	unsigned	arcount :16;	/* number of resource entries */
    145 } HEADER;
    146 
    147 #define PACKETSZ	NS_PACKETSZ
    148 #define MAXDNAME	NS_MAXDNAME
    149 #define MAXCDNAME	NS_MAXCDNAME
    150 #define MAXLABEL	NS_MAXLABEL
    151 #define	HFIXEDSZ	NS_HFIXEDSZ
    152 #define QFIXEDSZ	NS_QFIXEDSZ
    153 #define RRFIXEDSZ	NS_RRFIXEDSZ
    154 #define	INT32SZ		NS_INT32SZ
    155 #define	INT16SZ		NS_INT16SZ
    156 #define	INT8SZ		NS_INT8SZ
    157 #define	INADDRSZ	NS_INADDRSZ
    158 #define	IN6ADDRSZ	NS_IN6ADDRSZ
    159 #define	INDIR_MASK	NS_CMPRSFLGS
    160 #define NAMESERVER_PORT	NS_DEFAULTPORT
    161 
    162 #define S_ZONE		ns_s_zn
    163 #define S_PREREQ	ns_s_pr
    164 #define S_UPDATE	ns_s_ud
    165 #define S_ADDT		ns_s_ar
    166 
    167 #define QUERY		ns_o_query
    168 #define IQUERY		ns_o_iquery
    169 #define STATUS		ns_o_status
    170 #define	NS_NOTIFY_OP	ns_o_notify
    171 #define	NS_UPDATE_OP	ns_o_update
    172 
    173 #define NOERROR		ns_r_noerror
    174 #define FORMERR		ns_r_formerr
    175 #define SERVFAIL	ns_r_servfail
    176 #define NXDOMAIN	ns_r_nxdomain
    177 #define NOTIMP		ns_r_notimpl
    178 #define REFUSED		ns_r_refused
    179 #define YXDOMAIN	ns_r_yxdomain
    180 #define YXRRSET		ns_r_yxrrset
    181 #define NXRRSET		ns_r_nxrrset
    182 #define NOTAUTH		ns_r_notauth
    183 #define NOTZONE		ns_r_notzone
    184 /*#define BADSIG		ns_r_badsig*/
    185 /*#define BADKEY		ns_r_badkey*/
    186 /*#define BADTIME		ns_r_badtime*/
    187 
    188 
    189 #define DELETE		ns_uop_delete
    190 #define ADD		ns_uop_add
    191 
    192 #define T_A		ns_t_a
    193 #define T_NS		ns_t_ns
    194 #define T_MD		ns_t_md
    195 #define T_MF		ns_t_mf
    196 #define T_CNAME		ns_t_cname
    197 #define T_SOA		ns_t_soa
    198 #define T_MB		ns_t_mb
    199 #define T_MG		ns_t_mg
    200 #define T_MR		ns_t_mr
    201 #define T_NULL		ns_t_null
    202 #define T_WKS		ns_t_wks
    203 #define T_PTR		ns_t_ptr
    204 #define T_HINFO		ns_t_hinfo
    205 #define T_MINFO		ns_t_minfo
    206 #define T_MX		ns_t_mx
    207 #define T_TXT		ns_t_txt
    208 #define	T_RP		ns_t_rp
    209 #define T_AFSDB		ns_t_afsdb
    210 #define T_X25		ns_t_x25
    211 #define T_ISDN		ns_t_isdn
    212 #define T_RT		ns_t_rt
    213 #define T_NSAP		ns_t_nsap
    214 #define T_NSAP_PTR	ns_t_nsap_ptr
    215 #define	T_SIG		ns_t_sig
    216 #define	T_KEY		ns_t_key
    217 #define	T_PX		ns_t_px
    218 #define	T_GPOS		ns_t_gpos
    219 #define	T_AAAA		ns_t_aaaa
    220 #define	T_LOC		ns_t_loc
    221 #define	T_NXT		ns_t_nxt
    222 #define	T_EID		ns_t_eid
    223 #define	T_NIMLOC	ns_t_nimloc
    224 #define	T_SRV		ns_t_srv
    225 #define T_ATMA		ns_t_atma
    226 #define T_NAPTR		ns_t_naptr
    227 #define T_A6		ns_t_a6
    228 #define	T_TSIG		ns_t_tsig
    229 #define	T_IXFR		ns_t_ixfr
    230 #define T_AXFR		ns_t_axfr
    231 #define T_MAILB		ns_t_mailb
    232 #define T_MAILA		ns_t_maila
    233 #define T_ANY		ns_t_any
    234 
    235 #define C_IN		ns_c_in
    236 #define C_CHAOS		ns_c_chaos
    237 #define C_HS		ns_c_hs
    238 /* BIND_UPDATE */
    239 #define C_NONE		ns_c_none
    240 #define C_ANY		ns_c_any
    241 
    242 #define	GETSHORT		NS_GET16
    243 #define	GETLONG			NS_GET32
    244 #define	PUTSHORT		NS_PUT16
    245 #define	PUTLONG			NS_PUT32
    246 
    247 #endif /* _ARPA_NAMESER_COMPAT_ */
    248