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

操作系统开发

开发平台:

WINDOWS

  1. GETHOSTBYNAME(3)          Minix Programmer's Manual           GETHOSTBYNAME(3)
  2. NAME
  3.      g_h_b_n,   gethostbyname,    gethostbyaddr,    gethostent,    sethostent,
  4.      endhostent, herror - get network host entry
  5. SYNOPSIS
  6.      #include <net/gen/netdb.h>
  7.      extern int h_errno;
  8.      struct hostent *gethostbyname(name)
  9.      char *name;
  10.      struct hostent *gethostbyaddr(addr, len, type)
  11.      char *addr; int len, type;
  12.      struct hostent *gethostent()
  13.      sethostent(stayopen)
  14.      int stayopen;
  15.      endhostent()
  16.      herror(string)
  17.      char *string;
  18. DESCRIPTION
  19.      Gethostbyname and gethostbyaddr each return a pointer to an  object  with
  20.      the following structure describing an internet host referenced by name or
  21.      by address, respectively.  This structure contains either the information
  22.      obtained from the name server, named(8), or broken-out fields from a line
  23.      in /etc/hosts.  If the local name server is not running these routines do
  24.      a lookup in /etc/hosts.
  25.      struct  hostent {
  26.              char    *h_name; /* official name of host */
  27.              char    **h_aliases; /* alias list */
  28.              int     h_addrtype; /* host address type */
  29.              int     h_length; /* length of address */
  30.              char    **h_addr_list; /* list of addresses from name server */
  31.      };
  32.      #define h_addr  h_addr_list[0] /* address, for backward compatibility */
  33.      The members of this structure are:
  34.      h_name       Official name of the host.
  35.      h_aliases    A zero terminated array of alternate names for the host.
  36. 5BSD                              June 23, 1990                              1
  37. GETHOSTBYNAME(3)          Minix Programmer's Manual           GETHOSTBYNAME(3)
  38.      h_addrtype   The  type  of  address  being  returned;  currently   always
  39.                   AF_INET.
  40.      h_length     The length, in bytes, of the address.
  41.      h_addr_list  A zero terminated array of network addresses for  the  host.
  42.                   Host addresses are returned in network byte order.
  43.      h_addr       The first address  in  h_addr_list;  this  is  for  backward
  44.                   compatiblity.
  45.      When using the nameserver, gethostbyname will search for the  named  host
  46.      in  the current domain and its parents unless the name ends in a dot.  If
  47.      the  name  contains   no   dot,   and   if   the   environment   variable
  48.      ``HOSTALAIASES''  contains the name of an alias file, the alias file will
  49.      first be searched for an alias matching the input name.  See  hostname(7)
  50.      for the domain search procedure and the alias file format.
  51.      Sethostent may be used to request the use of a connected TCP  socket  for
  52.      queries.   If the stayopen flag is non-zero, this sets the option to send
  53.      all queries to the name server using TCP and  to  retain  the  connection
  54.      after  each  call  to gethostbyname or gethostbyaddr.  Otherwise, queries
  55.      are performed using UDP datagrams.
  56.      Endhostent closes the TCP connection.
  57. DIAGNOSTICS
  58.      Error return status from gethostbyname and gethostbyaddr is indicated  by
  59.      return  of  a  null  pointer.   The  external integer h_errno may then be
  60.      checked to see whether this is a  temporary  failure  or  an  invalid  or
  61.      unknown  host.   The routine herror can be used to print an error message
  62.      describing the failure.  If  its  argument  string  is  non-NULL,  it  is
  63.      printed,  followed  by a colon and a space.  The error message is printed
  64.      with a trailing newline.
  65.      h_errno can have the following values:
  66.      HOST_NOT_FOUND  No such host is known.
  67.      TRY_AGAIN       This is usually a temporary  error  and  means  that  the
  68.                      local   server   did  not  receive  a  response  from  an
  69.                      authoritative server.  A retry at  some  later  time  may
  70.                      succeed.
  71.      NO_RECOVERY     Some unexpected server failure was encountered.  This  is
  72.                      a non-recoverable error.
  73. 5BSD                              June 23, 1990                              2
  74. GETHOSTBYNAME(3)          Minix Programmer's Manual           GETHOSTBYNAME(3)
  75.      NO_DATA         The requested name is valid  but  does  not  have  an  IP
  76.                      address;  this  is not a temporary error. This means that
  77.                      the name is known to the name  server  but  there  is  no
  78.                      address  associated  with  this  name.   Another  type of
  79.                      request to the name server using this  domain  name  will
  80.                      result in an answer; for example, a mail-forwarder may be
  81.                      registered for this domain.
  82. FILES
  83.      /etc/hosts
  84. SEE ALSO
  85.      resolver(3), hosts(5), hostname(7), named(8)
  86. CAVEAT
  87.      Gethostent is defined, and sethostent and endhostent are redefined,  when
  88.      libc  is  built  to use only the routines to lookup in /etc/hosts and not
  89.      the name server.
  90.      Gethostent reads the  next  line  of  /etc/hosts,  opening  the  file  if
  91.      necessary.
  92.      Sethostent is redefined to open and rewind the  file.   If  the  stayopen
  93.      argument  is  non-zero, the hosts data base will not be closed after each
  94.      call to gethostbyname or gethostbyaddr.  Endhostent is redefined to close
  95.      the file.
  96. BUGS
  97.      All information is contained in a static area so it must be copied if  it
  98.      is   to  be  saved.   Only  the  Internet  address  format  is  currently
  99.      understood.
  100. 5BSD                              June 23, 1990                              3