resolv.h
上传用户:luoyougen
上传日期:2008-05-12
资源大小:23136k
文件大小:6k
源码类别:

VxWorks

开发平台:

C/C++

  1. /* resolv.h - resolver internal data structures header file */
  2. /* Copyright 1984-2001 Wind River Systems, Inc. */
  3. /* $NetBSD: resolv.h,v 1.8 1994/10/26 00:56:16 cgd Exp $ */
  4. /*
  5.  * Copyright (c) 1983, 1987, 1989 The Regents of the University of California.
  6.  * All rights reserved.
  7.  *
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 1. Redistributions of source code must retain the above copyright
  12.  *    notice, this list of conditions and the following disclaimer.
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in the
  15.  *    documentation and/or other materials provided with the distribution.
  16.  * 3. All advertising materials mentioning features or use of this software
  17.  *    must display the following acknowledgement:
  18.  * This product includes software developed by the University of
  19.  * California, Berkeley and its contributors.
  20.  * 4. Neither the name of the University nor the names of its contributors
  21.  *    may be used to endorse or promote products derived from this software
  22.  *    without specific prior written permission.
  23.  *
  24.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  25.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  27.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  28.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  30.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  31.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  32.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  33.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  34.  * SUCH DAMAGE.
  35.  *
  36.  * @(#)resolv.h 5.15 (Berkeley) 4/3/91
  37.  */
  38. /*
  39. modification history
  40. --------------------
  41. 01c,24sep01,gls  removed definition of __P() macro (SPR #28330)
  42. 01b,02apr97,jag  Change types from u_int*_t to uint*_t. Added C++ and function
  43.  prototypes.
  44. 01a,11dec96,jag  created from BSD4.4 release. Deleted constants that are not
  45.  used by vxWorks.  Changed bit fields to meet ANSI specs.
  46. */
  47. #ifndef __INCresolvh
  48. #define __INCresolvh
  49. #include <stdio.h>
  50. #ifdef __cplusplus
  51. extern "C" {
  52. #endif
  53. /*
  54.  * revision information.  this is the release date in YYYYMMDD format.
  55.  * it can change every day so the right thing to do with it is use it
  56.  * in preprocessor commands such as "#if (__RES > 19931104)".  do not
  57.  * compare for equality; rather, use it to determine whether your resolver
  58.  * is new enough to contain a certain feature.
  59.  */
  60. #define __RES 19931104
  61. /*
  62.  * Global defines and variables for resolver stub.
  63.  */
  64. #define MAXNS 3 /* max # name servers we'll track */
  65. #define MAXDFLSRCH 3 /* # default domain levels to try */
  66. #define MAXDNSRCH 6 /* max # domains in search path */
  67. #define LOCALDOMAINPARTS 2 /* min levels in name that is "local" */
  68. #define MAXDNSLUS 4 /* max # of host lookup types */
  69. #define RES_TIMEOUT 5 /* min. seconds between retries */
  70. #define MAXRESOLVSORT 10 /* number of net to sort on */
  71. #define RES_MAXNDOTS 15 /* should reflect bit field size */
  72. #if ((CPU_FAMILY==I960) && (defined __GNUC__))
  73. #pragma align 1                 /* tell gcc960 not to optimize alignments */
  74. #endif  /* CPU_FAMILY==I960 */
  75. struct __res_state {
  76. int retrans;   /* retransmition time interval */
  77. int retry; /* number of times to retransmit */
  78. long options; /* option flags - see below. */
  79. int nscount; /* number of name servers */
  80. struct sockaddr_in nsaddr_list[MAXNS]; /* address of name server */
  81. #define nsaddr nsaddr_list[0] /* for backward compatibility */
  82. u_short id; /* current packet id */
  83. char *dnsrch[MAXDNSRCH+1]; /* components of domain to search */
  84. char defdname[MAXDNAME]; /* default domain */
  85. long pfcode; /* RES_PRF_ flags - see below. */
  86. u_int ndots:4, /* threshold for initial abs. query */
  87. nsort:4, /* number of elements in sort_list[] */
  88. :0; /* ANSI padding field */
  89. struct {
  90. struct in_addr addr;
  91. uint32_t mask;
  92. } sort_list[MAXRESOLVSORT];
  93. char lookups[MAXDNSLUS];
  94. };
  95. #if ((CPU_FAMILY==I960) && (defined __GNUC__))
  96. #pragma align 0                 /* turn off alignment requirement */
  97. #endif  /* CPU_FAMILY==I960 */
  98. /*
  99.  * Resolver options
  100.  */
  101. #define RES_INIT 0x0001 /* address initialized */
  102. #define RES_DEBUG 0x0002 /* print debug messages */
  103. #define RES_AAONLY 0x0004 /* authoritative answers only */
  104. #define RES_USEVC 0x0008 /* use virtual circuit */
  105. #define RES_PRIMARY 0x0010 /* query primary server only */
  106. #define RES_IGNTC 0x0020 /* ignore trucation errors */
  107. #define RES_RECURSE 0x0040 /* recursion desired */
  108. #define RES_DEFNAMES 0x0080 /* use default domain name */
  109. #define RES_STAYOPEN 0x0100 /* Keep TCP socket open */
  110. #define RES_DNSRCH 0x0200 /* search up local domain tree */
  111. #define RES_DEFAULT (RES_RECURSE | RES_DEFNAMES | RES_DNSRCH)
  112. /*
  113.  * Resolver "pfcode" values.  Used by dig.
  114.  */
  115. #define RES_PRF_STATS 0x0001
  116. /* 0x0002  */
  117. #define RES_PRF_CLASS 0x0004
  118. #define RES_PRF_CMD 0x0008
  119. #define RES_PRF_QUES 0x0010
  120. #define RES_PRF_ANS 0x0020
  121. #define RES_PRF_AUTH 0x0040
  122. #define RES_PRF_ADD 0x0080
  123. #define RES_PRF_HEAD1 0x0100
  124. #define RES_PRF_HEAD2 0x0200
  125. #define RES_PRF_TTLID 0x0400
  126. #define RES_PRF_HEADX 0x0800
  127. #define RES_PRF_QUERY 0x1000
  128. #define RES_PRF_REPLY 0x2000
  129. #define RES_PRF_INIT 0x4000
  130. /* 0x8000  */
  131. extern struct __res_state _res;
  132. /* Private routines shared between libc/net, named, nslookup and others. */
  133. #define dn_skipname __dn_skipname
  134. #define fp_query __fp_query
  135. #define hostalias __hostalias
  136. #define putlong __putlong
  137. #define putshort __putshort
  138. #define p_class __p_class
  139. #define p_time __p_time
  140. #define p_type __p_type
  141. int  __dn_skipname __P((const u_char *, const u_char *));
  142. void  __fp_query __P((char *, FILE *));
  143. char *__hostalias __P((const char *));
  144. void  __putlong __P((uint32_t, u_char *));
  145. void  __putshort __P((uint16_t, u_char *));
  146. char *__p_class __P((int));
  147. char *__p_time __P((uint32_t));
  148. char *__p_type __P((int));
  149. int  resQuery __P((char *, int, int, u_char *, int));
  150. int  resSearch __P((const char *, int, int, u_char *, int));
  151. int  resMkQuery __P((int, const char *, int, int, const char *, int,
  152. const char *, char *, int));
  153. int  resSend __P((const char *, int, char *, int));
  154. #ifdef __cplusplus
  155. }
  156. #endif
  157. #endif /* __INCresolvh */