resolv.h
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:6k
源码类别:

MySQL数据库

开发平台:

Visual C++

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