RESOLVER.3
上传用户:jnzhq888
上传日期:2007-01-18
资源大小:51694k
文件大小:7k
源码类别:

操作系统开发

开发平台:

WINDOWS

  1. RESOLVER(3)               Minix Programmer's Manual                RESOLVER(3)
  2. NAME
  3.      resolver,  res_query,  res_search,   res_mkquery,   res_send,   res_init,
  4.      dn_comp, dn_expand - resolver routines
  5. SYNOPSIS
  6.      #include <sys/types.h>
  7.      #include <net/gen/in.h>
  8.      #include <net/gen/nameser.h>
  9.      #include <net/gen/resolv.h>
  10.      res_query(dname, class, type, answer, anslen)
  11.      char *dname;
  12.      int class, type;
  13.      u_char *answer;
  14.      int anslen;
  15.      res_search(dname, class, type, answer, anslen)
  16.      char *dname;
  17.      int class, type;
  18.      u_char *answer;
  19.      int anslen;
  20.      res_mkquery(op, dname, class, type, data, datalen, newrr, buf, buflen)
  21.      int op;
  22.      char *dname;
  23.      int class, type;
  24.      char *data;
  25.      int datalen;
  26.      struct rrec *newrr;
  27.      char *buf;
  28.      int buflen;
  29.      res_send(msg, msglen, answer, anslen)
  30.      char *msg;
  31.      int msglen;
  32.      char *answer;
  33.      int anslen;
  34.      res_init()
  35.      dn_comp(exp_dn, comp_dn, length, dnptrs, lastdnptr)
  36.      char *exp_dn, *comp_dn;
  37.      int length;
  38.      char **dnptrs, **lastdnptr;
  39.      dn_expand(msg, eomorig, comp_dn, exp_dn, length)
  40.      char *msg, *eomorig, *comp_dn, exp_dn;
  41.      int length;
  42. 4BSD                              June 23, 1990                              1
  43. RESOLVER(3)               Minix Programmer's Manual                RESOLVER(3)
  44. DESCRIPTION
  45.      These routines are used for making, sending and  interpreting  query  and
  46.      reply messages with Internet domain name servers.
  47.      Global configuration and state information that is used by  the  resolver
  48.      routines  is  kept  in  the  structure  _res.   Most  of  the values have
  49.      reasonable defaults and can be ignored.  Options stored  in  _res.options
  50.      are  defined  in  resolv.h  and  are as follows.  Options are stored as a
  51.      simple bit mask containing the bitwise ``or'' of the options enabled.
  52.      RES_INIT
  53.           True if the initial name server address and default domain name  are
  54.           initialized (i.e., res_init has been called).
  55.      RES_DEBUG
  56.           Print debugging messages.
  57.      RES_AAONLY
  58.           Accept authoritative  answers  only.   With  this  option,  res_send
  59.           should  continue  until it finds an authoritative answer or finds an
  60.           error.  Currently this is not implemented.
  61.      RES_USEVC
  62.           Use TCP connections for queries instead of UDP datagrams.
  63.      RES_STAYOPEN
  64.           Used with RES_USEVC to keep the TCP connection open between queries.
  65.           This is useful only in programs that regularly do many queries.  UDP
  66.           should be the normal mode used.
  67.      RES_IGNTC
  68.           Unused currently (ignore truncation errors, i.e., don't  retry  with
  69.           TCP).
  70.      RES_RECURSE
  71.           Set the recursion-desired bit in  queries.   This  is  the  default.
  72.           (res_send  does not do iterative queries and expects the name server
  73.           to handle recursion.)
  74.      RES_DEFNAMES
  75.           If set, res_search will append the default domain  name  to  single-
  76.           component  names  (those that do not contain a dot).  This option is
  77.           enabled by default.
  78.      RES_DNSRCH
  79.           If this option is set, res_search will search for host names in  the
  80.           current domain and in parent domains; see hostname(7).  This is used
  81.           by the standard host lookup routine gethostbyname(3).   This  option
  82.           is enabled by default.
  83. 4BSD                              June 23, 1990                              2
  84. RESOLVER(3)               Minix Programmer's Manual                RESOLVER(3)
  85.      The  res_init  routine  reads  the  configuration  file  (if   any;   see
  86.      resolver(5)) to get the default domain name, search list and the Internet
  87.      address of the local name server(s).  If no  server  is  configured,  the
  88.      host  running  the resolver is tried.  The current domain name is defined
  89.      by the hostname if not specified in the configuration  file;  it  can  be
  90.      overridden  by  the  environment  variable  LOCALDOMAIN.   Initialization
  91.      normally occurs on the first call to one of the following routines.
  92.      The  res_query  function  provides  an  interface  to  the  server  query
  93.      mechanism.  It constructs a query, sends it to the local server, awaits a
  94.      response, and makes preliminary checks on the reply.  The query  requests
  95.      information  of  the  specified  type  and class for the specified fully-
  96.      qualified domain name dname . The reply message is  left  in  the  answer
  97.      buffer with length anslen supplied by the caller.
  98.      The  res_search  routine  makes  a  query  and  awaits  a  response  like
  99.      res_query,  but  in  addition, it implements the default and search rules
  100.      controlled by the RES_DEFNAMES and RES_DNSRCH options.   It  returns  the
  101.      first successful reply.
  102.      The remaining routines are lower-level routines used by  res_query.   The
  103.      res_mkquery function constructs a standard query message and places it in
  104.      buf.  It returns the size of the query, or -1 if the query is larger than
  105.      buflen.   The query type op is usually QUERY, but can be any of the query
  106.      types defined in <arpa/nameser.h>.  The domain  name  for  the  query  is
  107.      given  by  dname.   Newrr  is currently unused but is intended for making
  108.      update messages.
  109.      The res_send routine sends a pre-formatted query and returns  an  answer.
  110.      It will call res_init if RES_INIT is not set, send the query to the local
  111.      name server, and handle timeouts and retries.  The length  of  the  reply
  112.      message is returned, or -1 if there were errors.
  113.      The dn_comp function compresses the domain name exp_dn and stores  it  in
  114.      comp_dn.  The size of the compressed name is returned or -1 if there were
  115.      errors.  The size of the array pointed to by comp_dn is given by  length.
  116.      The compression uses an array of pointers dnptrs to previously-compressed
  117.      names in the current  message.   The  first  pointer  points  to  to  the
  118.      beginning  of  the message and the list ends with NULL.  The limit to the
  119.      array is specified by lastdnptr.  A side effect of dn_comp is  to  update
  120.      the  list of pointers for labels inserted into the message as the name is
  121.      compressed.  If dnptr is NULL, names are not compressed.  If lastdnptr is
  122.      NULL, the list of labels is not updated.
  123.      The dn_expand entry expands the compressed domain name comp_dn to a  full
  124.      domain name The compressed name is contained in a query or reply message;
  125.      msg is a pointer to the beginning of the message.  The uncompressed  name
  126.      is placed in the buffer indicated by exp_dn which is of size length.  The
  127.      size of compressed name is returned or -1 if there was an error.
  128. 4BSD                              June 23, 1990                              3
  129. RESOLVER(3)               Minix Programmer's Manual                RESOLVER(3)
  130. FILES
  131.      /etc/resolv.conf see resolver(5)
  132. SEE ALSO
  133.      gethostbyname(3), named(8), resolver(5), hostname(7),
  134.      RFC1032, RFC1033, RFC1034, RFC1035, RFC974,
  135.      SMM:11 Name Server Operations Guide for BIND
  136. 4BSD                              June 23, 1990                              4