*nix Documentation Project
·  Home
 +   man pages
·  Linux HOWTOs
·  FreeBSD Tips
·  *niX Forums

  man pages->Linux man pages -> gethostbyname (3)              
Title
Content
Arch
Section
 

GETHOSTBYNAME(3)

Contents


NAME    [Toc]    [Back]

       gethostbyname, gethostbyaddr, sethostent, endhostent, herror, hstrerror
       - get network host entry

SYNOPSIS    [Toc]    [Back]

       #include <netdb.h>
       extern int h_errno;

       struct hostent *gethostbyname(const char *name);
       struct hostent *gethostbyname2(const char *name, int af);

       #include <sys/socket.h>	      /* for AF_INET */
       struct hostent *gethostbyaddr(const char *addr,
	 int len, int type);

       void sethostent(int stayopen);

       void endhostent(void);

       void herror(const char *s);

       const char * hstrerror(int err);

DESCRIPTION    [Toc]    [Back]

       The gethostbyname() function returns a structure of  type  hostent  for
       the  given  host  name.	 Here  name  is either a host name, or an IPv4
       address in standard dot notation, or an IPv6 address in colon (and possibly
  dot)  notation.  (See  RFC  1884	for  the  description  of IPv6
       addresses.)  If name is an IPv4 or IPv6 address, no lookup is performed
       and  gethostbyname()  simply  copies name into the h_name field and its
       struct in_addr equivalent into the h_addr_list[0] field of the returned
       hostent	structure.   If  name doesn't end in a dot and the environment
       variable HOSTALIASES is set, the alias file pointed to  by  HOSTALIASES
       will  first be searched for name (see hostname(7) for the file format).
       The current domain and its parents are searched unless name ends  in  a
       dot.

       The  gethostbyaddr()  function  returns a structure of type hostent for
       the given host address addr of length len and address type  type.   The
       only valid address type is currently AF_INET.

       The  sethostent()  function  specifies, if stayopen is true (1), that a
       connected TCP socket should be used for the  name  server  queries  and
       that the connection should remain open during successive queries.  Otherwise,
 name server queries will use UDP datagrams.

       The endhostent() function ends the use of a  TCP  connection  for  name
       server queries.

       The  (obsolete)	herror()  function prints the error message associated
       with the current value of h_errno on stderr.

       The (obsolete) hstrerror() function takes an  error  number  (typically
       h_errno) and returns the corresponding message string.

       The  domain  name  queries  carried out by gethostbyname() and gethost-
       byaddr() use a combination of any or all of the name server named(8), a
       broken  out  line  from /etc/hosts, and the Network Information Service
       (NIS or	YP),  depending  upon  the  contents  of  the  order  line  in
       /etc/host.conf.	 (See  resolv+(8)).   The  default  action is to query
       named(8), followed by /etc/hosts.

       The hostent structure is defined in <netdb.h> as follows:

	      struct hostent {
		      char    *h_name;	      /* official name of host */
		      char    **h_aliases;    /* alias list */
		      int     h_addrtype;     /* host address type */
		      int     h_length;       /* length of address */
		      char    **h_addr_list;  /* list of addresses */
	      }
	      #define h_addr  h_addr_list[0]  /* for backward compatibility */

       The members of the hostent structure are:

       h_name The official name of the host.

       h_aliases
	      A zero-terminated array of alternative names for the host.

       h_addrtype
	      The type of address; always AF_INET at present.

       h_length
	      The length of the address in bytes.

       h_addr_list
	      A zero-terminated array of network addresses  for  the  host  in
	      network byte order.

       h_addr The first address in h_addr_list for backward compatibility.

RETURN VALUE    [Toc]    [Back]

       The  gethostbyname()  and  gethostbyaddr() functions return the hostent
       structure or a NULL pointer if an error occurs.	On error, the  h_errno
       variable holds an error number.

ERRORS    [Toc]    [Back]

       The variable h_errno can have the following values:

       HOST_NOT_FOUND    [Toc]    [Back]
	      The specified host is unknown.

       NO_ADDRESS or NO_DATA
	      The requested name is valid but does not have an IP address.

       NO_RECOVERY    [Toc]    [Back]
	      A non-recoverable name server error occurred.

       TRY_AGAIN    [Toc]    [Back]
	      A temporary error occurred on an authoritative name server.  Try
	      again later.

FILES    [Toc]    [Back]

       /etc/host.conf
	      resolver configuration file

       /etc/hosts
	      host database file

CONFORMING TO    [Toc]    [Back]

       BSD 4.3.

NOTES    [Toc]    [Back]

       The functions gethostbyname() and gethostbyaddr() may  return  pointers
       to  static  data,  which may be overwritten by later calls. Copying the
       struct hostent does not suffice, since it contains pointers  -  a  deep
       copy is required.

       The  SUS-v2  standard  is buggy and declares the len parameter to be of
       type size_t.  (That is wrong, because it has to be int, and  size_t  is
       not. The Austin draft makes it socklen_t, which is OK.)

       Glibc2 also has a

       struct hostent *gethostbyname2(const char *name, int af);

       that  works  like  gethostbyname(),  but permits to specify the address
       family to which the address must belong.

       The Austin draft marks gethostbyaddr() and gethostbyname() legacy,  and
       introduces

       struct hostent *getipnodebyaddr (const void *restrict addr,
	 socklen_t len, int type, int *restrict error_num);

       struct hostent *getipnodebyname (const char *name,
	 int type, int flags, int *error_num);

SEE ALSO    [Toc]    [Back]

      
      
       resolver(3), hosts(5), hostname(7), resolv+(8), named(8)



BSD				  2000-08-12		      GETHOSTBYNAME(3)
[ Back ]
 Similar pages
Name OS Title
gethostbyname_r Tru64 Get a network host entry by name
gethostbyname Tru64 Get a network host entry by name
getipnodebyaddr Tru64 Get a network host entry by address
gethostbyaddr_r Tru64 Get a network host entry by address
gethostbyaddr Tru64 Get a network host entry by address
getipnodebyname Tru64 Get a network host entry by name for a specific address family
endhostent_r Tru64 End retrieval of network host entries
sethostent_r Tru64 Open a network host file
sethostent Tru64 Open a network host file
ruptime Tru64 Displays the status of each host on a network
Copyright © 2004-2005 DeniX Solutions SRL
newsletter delivery service