home *** CD-ROM | disk | FTP | other *** search
/ RISCWORLD 7 / RISCWORLD_VOL7.iso / Software / Issue6 / SDL.ZIP / !gcc / include / unixlib / arpa / h / nameser_compat < prev    next >
Encoding:
Text File  |  2006-09-17  |  6.1 KB  |  194 lines

  1. /****************************************************************************
  2.  *
  3.  * $Source: $
  4.  * $Date: $
  5.  * $Revision: $
  6.  * $State: $
  7.  * $Author: $
  8.  *
  9.  ***************************************************************************/
  10.  
  11. /* Copyright (c) 1983, 1989
  12.  *    The Regents of the University of California.  All rights reserved.
  13.  *
  14.  * Redistribution and use in source and binary forms, with or without
  15.  * modification, are permitted provided that the following conditions
  16.  * are met:
  17.  * 1. Redistributions of source code must retain the above copyright
  18.  *    notice, this list of conditions and the following disclaimer.
  19.  * 2. Redistributions in binary form must reproduce the above copyright
  20.  *    notice, this list of conditions and the following disclaimer in the
  21.  *    documentation and/or other materials provided with the distribution.
  22.  * 4. Neither the name of the University nor the names of its contributors
  23.  *    may be used to endorse or promote products derived from this software
  24.  *    without specific prior written permission.
  25.  *
  26.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  27.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  28.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  29.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  30.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  31.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  32.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  33.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  34.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  35.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  36.  * SUCH DAMAGE.
  37.  */
  38.  
  39. /*
  40.  *      from nameser.h    8.1 (Berkeley) 6/2/93
  41.  *    $BINDId: nameser_compat.h,v 8.11 1999/01/02 08:00:58 vixie Exp $
  42.  */
  43.  
  44. #ifndef _ARPA_NAMESER_COMPAT_
  45. #define    _ARPA_NAMESER_COMPAT_
  46.  
  47. #define    __BIND        19950621    /* (DEAD) interface version stamp. */
  48.  
  49. #include <endian.h>
  50.  
  51. /*
  52.  * Structure for query header.  The order of the fields is machine- and
  53.  * compiler-dependent, depending on the byte/bit order and the layout
  54.  * of bit fields.  We use bit fields only in int variables, as this
  55.  * is all ANSI requires.  This requires a somewhat confusing rearrangement.
  56.  */
  57.  
  58. typedef struct {
  59.     unsigned    id :16;        /* query identification number */
  60. #if BYTE_ORDER == BIG_ENDIAN
  61.             /* fields in third byte */
  62.     unsigned    qr: 1;        /* response flag */
  63.     unsigned    opcode: 4;    /* purpose of message */
  64.     unsigned    aa: 1;        /* authoritive answer */
  65.     unsigned    tc: 1;        /* truncated message */
  66.     unsigned    rd: 1;        /* recursion desired */
  67.             /* fields in fourth byte */
  68.     unsigned    ra: 1;        /* recursion available */
  69.     unsigned    unused :1;    /* unused bits (MBZ as of 4.9.3a3) */
  70.     unsigned    ad: 1;        /* authentic data from named */
  71.     unsigned    cd: 1;        /* checking disabled by resolver */
  72.     unsigned    rcode :4;    /* response code */
  73. #endif
  74. #if BYTE_ORDER == LITTLE_ENDIAN || BYTE_ORDER == PDP_ENDIAN
  75.             /* fields in third byte */
  76.     unsigned    rd :1;        /* recursion desired */
  77.     unsigned    tc :1;        /* truncated message */
  78.     unsigned    aa :1;        /* authoritive answer */
  79.     unsigned    opcode :4;    /* purpose of message */
  80.     unsigned    qr :1;        /* response flag */
  81.             /* fields in fourth byte */
  82.     unsigned    rcode :4;    /* response code */
  83.     unsigned    cd: 1;        /* checking disabled by resolver */
  84.     unsigned    ad: 1;        /* authentic data from named */
  85.     unsigned    unused :1;    /* unused bits (MBZ as of 4.9.3a3) */
  86.     unsigned    ra :1;        /* recursion available */
  87. #endif
  88.             /* remaining bytes */
  89.     unsigned    qdcount :16;    /* number of question entries */
  90.     unsigned    ancount :16;    /* number of answer entries */
  91.     unsigned    nscount :16;    /* number of authority entries */
  92.     unsigned    arcount :16;    /* number of resource entries */
  93. } HEADER;
  94.  
  95. #define PACKETSZ    NS_PACKETSZ
  96. #define MAXDNAME    NS_MAXDNAME
  97. #define MAXCDNAME    NS_MAXCDNAME
  98. #define MAXLABEL    NS_MAXLABEL
  99. #define    HFIXEDSZ    NS_HFIXEDSZ
  100. #define QFIXEDSZ    NS_QFIXEDSZ
  101. #define RRFIXEDSZ    NS_RRFIXEDSZ
  102. #define    INT32SZ        NS_INT32SZ
  103. #define    INT16SZ        NS_INT16SZ
  104. #define    INADDRSZ    NS_INADDRSZ
  105. #define    IN6ADDRSZ    NS_IN6ADDRSZ
  106. #define    INDIR_MASK    NS_CMPRSFLGS
  107. #define NAMESERVER_PORT    NS_DEFAULTPORT
  108.  
  109. #define S_ZONE        ns_s_zn
  110. #define S_PREREQ    ns_s_pr
  111. #define S_UPDATE    ns_s_ud
  112. #define S_ADDT        ns_s_ar
  113.  
  114. #define QUERY        ns_o_query
  115. #define IQUERY        ns_o_iquery
  116. #define STATUS        ns_o_status
  117. #define    NS_NOTIFY_OP    ns_o_notify
  118. #define    NS_UPDATE_OP    ns_o_update
  119.  
  120. #define NOERROR        ns_r_noerror
  121. #define FORMERR        ns_r_formerr
  122. #define SERVFAIL    ns_r_servfail
  123. #define NXDOMAIN    ns_r_nxdomain
  124. #define NOTIMP        ns_r_notimpl
  125. #define REFUSED        ns_r_refused
  126. #define YXDOMAIN    ns_r_yxdomain
  127. #define YXRRSET        ns_r_yxrrset
  128. #define NXRRSET        ns_r_nxrrset
  129. #define NOTAUTH        ns_r_notauth
  130. #define NOTZONE        ns_r_notzone
  131. /*#define BADSIG        ns_r_badsig*/
  132. /*#define BADKEY        ns_r_badkey*/
  133. /*#define BADTIME        ns_r_badtime*/
  134.  
  135.  
  136. #define DELETE        ns_uop_delete
  137. #define ADD        ns_uop_add
  138.  
  139. #define T_A        ns_t_a
  140. #define T_NS        ns_t_ns
  141. #define T_MD        ns_t_md
  142. #define T_MF        ns_t_mf
  143. #define T_CNAME        ns_t_cname
  144. #define T_SOA        ns_t_soa
  145. #define T_MB        ns_t_mb
  146. #define T_MG        ns_t_mg
  147. #define T_MR        ns_t_mr
  148. #define T_NULL        ns_t_null
  149. #define T_WKS        ns_t_wks
  150. #define T_PTR        ns_t_ptr
  151. #define T_HINFO        ns_t_hinfo
  152. #define T_MINFO        ns_t_minfo
  153. #define T_MX        ns_t_mx
  154. #define T_TXT        ns_t_txt
  155. #define    T_RP        ns_t_rp
  156. #define T_AFSDB        ns_t_afsdb
  157. #define T_X25        ns_t_x25
  158. #define T_ISDN        ns_t_isdn
  159. #define T_RT        ns_t_rt
  160. #define T_NSAP        ns_t_nsap
  161. #define T_NSAP_PTR    ns_t_nsap_ptr
  162. #define    T_SIG        ns_t_sig
  163. #define    T_KEY        ns_t_key
  164. #define    T_PX        ns_t_px
  165. #define    T_GPOS        ns_t_gpos
  166. #define    T_AAAA        ns_t_aaaa
  167. #define    T_LOC        ns_t_loc
  168. #define    T_NXT        ns_t_nxt
  169. #define    T_EID        ns_t_eid
  170. #define    T_NIMLOC    ns_t_nimloc
  171. #define    T_SRV        ns_t_srv
  172. #define T_ATMA        ns_t_atma
  173. #define T_NAPTR        ns_t_naptr
  174. #define    T_TSIG        ns_t_tsig
  175. #define    T_IXFR        ns_t_ixfr
  176. #define T_AXFR        ns_t_axfr
  177. #define T_MAILB        ns_t_mailb
  178. #define T_MAILA        ns_t_maila
  179. #define T_ANY        ns_t_any
  180.  
  181. #define C_IN        ns_c_in
  182. #define C_CHAOS        ns_c_chaos
  183. #define C_HS        ns_c_hs
  184. /* BIND_UPDATE */
  185. #define C_NONE        ns_c_none
  186. #define C_ANY        ns_c_any
  187.  
  188. #define    GETSHORT        NS_GET16
  189. #define    GETLONG            NS_GET32
  190. #define    PUTSHORT        NS_PUT16
  191. #define    PUTLONG            NS_PUT32
  192.  
  193. #endif /* _ARPA_NAMESER_COMPAT_ */
  194.