1 .\" Copyright (c) 1983, 1987, 1991, 1993
2 .\" The Regents of the University of California. All rights reserved.
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\" notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\" notice, this list of conditions and the following disclaimer in the
11 .\" documentation and/or other materials provided with the distribution.
12 .\" 4. Neither the name of the University nor the names of its contributors
13 .\" may be used to endorse or promote products derived from this software
14 .\" without specific prior written permission.
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
28 .\" From: @(#)gethostbyname.3 8.4 (Berkeley) 5/25/95
29 .\" $FreeBSD: src/lib/libc/net/gethostbyname.3,v 1.38 2007/01/09 00:28:02 imp Exp $
43 .Nd get network host entry
50 .Fn gethostbyname "const char *name"
52 .Fn gethostbyname2 "const char *name" "int af"
54 .Fn gethostbyaddr "const void *addr" "socklen_t len" "int type"
58 .Fn sethostent "int stayopen"
62 .Fn herror "const char *string"
64 .Fn hstrerror "int err"
71 functions are preferred over the
85 each return a pointer to an object with the
86 following structure describing an internet host
87 referenced by name or by address, respectively.
96 .Dv NUL Ns -terminated
102 should point to an address which is
106 (i.e., not an IP address in human readable
111 argument specifies the address family
113 .Dv AF_INET , AF_INET6 ,
114 etc.) of this address.
116 The structure returned contains information obtained from
117 .Xr mDNSResponder 8 ,
120 .\"The structure returned contains either the information obtained from the name
123 .\"broken-out fields from a line in
125 .\"or database entries supplied by the
128 .\"The order of the lookups is controlled by the
131 .\".Xr nsswitch.conf 5 .
134 char *h_name; /* official name of host */
135 char **h_aliases; /* alias list */
136 int h_addrtype; /* host address type */
137 int h_length; /* length of address */
138 char **h_addr_list; /* list of addresses from name server */
140 #define h_addr h_addr_list[0] /* address, for backward compatibility */
143 The members of this structure are:
144 .Bl -tag -width h_addr_list
146 Official name of the host.
149 .Dv NULL Ns -terminated
150 array of alternate names for the host.
152 The type of address being returned; usually
155 The length, in bytes, of the address.
158 .Dv NULL Ns -terminated
159 array of network addresses for the host.
160 Host addresses are returned in network byte order.
164 this is for backward compatibility.
167 When using the nameserver,
171 will search for the named host in the current domain and its parents
172 unless the name ends in a dot.
173 .\"If the name contains no dot, and if the environment variable
174 .\".Dq Ev HOSTALIASES
175 .\"contains the name of an alias file, the alias file will first be searched
176 .\"for an alias matching the input name.
179 .\"for the domain search procedure and the alias file format.
183 function is an evolution of
185 which is intended to allow lookups in address families other than
193 .\"may be used to request the use of a connected
195 .\"socket for queries.
199 .\"this sets the option to send all queries to the name server using
201 .\"and to retain the connection after each call to
202 .\".Fn gethostbyname ,
203 .\".Fn gethostbyname2
205 .\".Fn gethostbyaddr .
206 .\"Otherwise, queries are performed using
219 function writes a message to the diagnostic output consisting of the
224 and a message corresponding to the value of
229 function returns a string which is the message text corresponding to the
234 Historically, passing a host's own hostname to
239 technique for determining that host's IP address(es), but this is fragile,
240 and doesn't work reliably in all cases. The appropriate way for software to
241 discover the IP address(es) of the host it is running on is to use
245 .Bl -tag -width /etc/nsswitch.conf -compact
247 .\".It Pa /etc/nsswitch.conf
248 .It Pa /etc/resolv.conf
251 Print out the hostname associated with a specific IP address:
252 .Bd -literal -offset indent
253 const char *ipstr = "127.0.0.1";
257 if (!inet_aton(ipstr, &ip))
258 errx(1, "can't parse IP address %s", ipstr);
260 if ((hp = gethostbyaddr((const void *)&ip,
261 sizeof ip, AF_INET)) == NULL)
262 errx(1, "no name associated with %s", ipstr);
264 printf("name associated with %s is %s\en", ipstr, hp->h_name);
267 Error return status from
272 is indicated by return of a
277 may then be checked to see whether this is a temporary failure
278 or an invalid or unknown host.
281 can be used to print an error message describing the failure.
286 it is printed, followed by a colon and a space.
287 The error message is printed with a trailing newline.
291 can have the following values:
292 .Bl -tag -width HOST_NOT_FOUND
293 .It Dv HOST_NOT_FOUND
294 No such host is known.
296 This is usually a temporary error
297 and means that the local server did not receive
298 a response from an authoritative server.
299 A retry at some later time may succeed.
301 Some unexpected server failure was encountered.
302 This is a non-recoverable error.
304 The requested name is valid but does not have an IP address;
305 this is not a temporary error.
306 This means that the name is known to the name server but there is no address
307 associated with this name.
308 Another type of request to the name server using this domain name
309 will result in an answer;
310 for example, a mail-forwarder may be registered for this domain.
332 is built to use only the routines to lookup in
334 and not the name server.
339 reads the next line of
341 opening the file if necessary.
346 opens and/or rewinds the file
350 argument is non-zero,
351 the file will not be closed after each call to
373 functions appeared in
377 function first appeared in
381 These functions use a thread-specific data storage;
382 if the data is needed for future use, it should be
383 copied before any subsequent calls overwrite it.
385 Though these functions are thread-safe,
386 still it is recommended to use the
388 family of functions, instead.
391 address format is currently understood.