Remove building with NOCRYPTO option
[minix.git] / external / bsd / bind / dist / lib / lwres / man / lwres_getipnode.3
blob08a0d143cec8c4708fb283d5ac65d8c0545e5524
1 .\"     $NetBSD: lwres_getipnode.3,v 1.5 2014/12/10 04:38:02 christos Exp $
2 .\"
3 .\" Copyright (C) 2004, 2005, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
4 .\" Copyright (C) 2000, 2001, 2003 Internet Software Consortium.
5 .\" 
6 .\" Permission to use, copy, modify, and/or distribute this software for any
7 .\" purpose with or without fee is hereby granted, provided that the above
8 .\" copyright notice and this permission notice appear in all copies.
9 .\" 
10 .\" THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11 .\" REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12 .\" AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13 .\" INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14 .\" LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15 .\" OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16 .\" PERFORMANCE OF THIS SOFTWARE.
17 .\"
18 .\" Id
19 .\"
20 .hy 0
21 .ad l
22 .\"     Title: lwres_getipnode
23 .\"    Author: 
24 .\" Generator: DocBook XSL Stylesheets v1.71.1 <http://docbook.sf.net/>
25 .\"      Date: June 18, 2007
26 .\"    Manual: BIND9
27 .\"    Source: BIND9
28 .\"
29 .TH "LWRES_GETIPNODE" "3" "June 18, 2007" "BIND9" "BIND9"
30 .\" disable hyphenation
31 .nh
32 .\" disable justification (adjust text to left margin only)
33 .ad l
34 .SH "NAME"
35 lwres_getipnodebyname, lwres_getipnodebyaddr, lwres_freehostent \- lightweight resolver nodename / address translation API
36 .SH "SYNOPSIS"
37 .nf
38 #include <lwres/netdb.h>
39 .fi
40 .HP 39
41 .BI "struct hostent * lwres_getipnodebyname(const\ char\ *" "name" ", int\ " "af" ", int\ " "flags" ", int\ *" "error_num" ");"
42 .HP 39
43 .BI "struct hostent * lwres_getipnodebyaddr(const\ void\ *" "src" ", size_t\ " "len" ", int\ " "af" ", int\ *" "error_num" ");"
44 .HP 23
45 .BI "void lwres_freehostent(struct\ hostent\ *" "he" ");"
46 .SH "DESCRIPTION"
47 .PP
48 These functions perform thread safe, protocol independent nodename\-to\-address and address\-to\-nodename translation as defined in RFC2553.
49 .PP
50 They use a
51 \fBstruct hostent\fR
52 which is defined in
53 \fInamedb.h\fR:
54 .PP
55 .RS 4
56 .nf
57 struct  hostent {
58         char    *h_name;        /* official name of host */
59         char    **h_aliases;    /* alias list */
60         int     h_addrtype;     /* host address type */
61         int     h_length;       /* length of address */
62         char    **h_addr_list;  /* list of addresses from name server */
64 #define h_addr  h_addr_list[0]  /* address, for backward compatibility */
65 .fi
66 .RE
67 .sp
68 .PP
69 The members of this structure are:
70 .PP
71 \fBh_name\fR
72 .RS 4
73 The official (canonical) name of the host.
74 .RE
75 .PP
76 \fBh_aliases\fR
77 .RS 4
78 A NULL\-terminated array of alternate names (nicknames) for the host.
79 .RE
80 .PP
81 \fBh_addrtype\fR
82 .RS 4
83 The type of address being returned \- usually
84 \fBPF_INET\fR
86 \fBPF_INET6\fR.
87 .RE
88 .PP
89 \fBh_length\fR
90 .RS 4
91 The length of the address in bytes.
92 .RE
93 .PP
94 \fBh_addr_list\fR
95 .RS 4
97 \fBNULL\fR
98 terminated array of network addresses for the host. Host addresses are returned in network byte order.
99 .RE
101 \fBlwres_getipnodebyname()\fR
102 looks up addresses of protocol family
103 \fIaf\fR
104 for the hostname
105 \fIname\fR. The
106 \fIflags\fR
107 parameter contains ORed flag bits to specify the types of addresses that are searched for, and the types of addresses that are returned. The flag bits are:
109 \fBAI_V4MAPPED\fR
110 .RS 4
111 This is used with an
112 \fIaf\fR
113 of AF_INET6, and causes IPv4 addresses to be returned as IPv4\-mapped IPv6 addresses.
116 \fBAI_ALL\fR
117 .RS 4
118 This is used with an
119 \fIaf\fR
120 of AF_INET6, and causes all known addresses (IPv6 and IPv4) to be returned. If AI_V4MAPPED is also set, the IPv4 addresses are return as mapped IPv6 addresses.
123 \fBAI_ADDRCONFIG\fR
124 .RS 4
125 Only return an IPv6 or IPv4 address if here is an active network interface of that type. This is not currently implemented in the BIND 9 lightweight resolver, and the flag is ignored.
128 \fBAI_DEFAULT\fR
129 .RS 4
130 This default sets the
131 \fBAI_V4MAPPED\fR
133 \fBAI_ADDRCONFIG\fR
134 flag bits.
137 \fBlwres_getipnodebyaddr()\fR
138 performs a reverse lookup of address
139 \fIsrc\fR
140 which is
141 \fIlen\fR
142 bytes long.
143 \fIaf\fR
144 denotes the protocol family, typically
145 \fBPF_INET\fR
147 \fBPF_INET6\fR.
149 \fBlwres_freehostent()\fR
150 releases all the memory associated with the
151 \fBstruct hostent\fR
152 pointer
153 \fIhe\fR. Any memory allocated for the
154 \fBh_name\fR,
155 \fBh_addr_list\fR
157 \fBh_aliases\fR
158 is freed, as is the memory for the
159 \fBhostent\fR
160 structure itself.
161 .SH "RETURN VALUES"
163 If an error occurs,
164 \fBlwres_getipnodebyname()\fR
166 \fBlwres_getipnodebyaddr()\fR
168 \fI*error_num\fR
169 to an appropriate error code and the function returns a
170 \fBNULL\fR
171 pointer. The error codes and their meanings are defined in
172 \fI<lwres/netdb.h>\fR:
174 \fBHOST_NOT_FOUND\fR
175 .RS 4
176 No such host is known.
179 \fBNO_ADDRESS\fR
180 .RS 4
181 The server recognised the request and the name but no address is available. Another type of request to the name server for the domain might return an answer.
184 \fBTRY_AGAIN\fR
185 .RS 4
186 A temporary and possibly transient error occurred, such as a failure of a server to respond. The request may succeed if retried.
189 \fBNO_RECOVERY\fR
190 .RS 4
191 An unexpected failure occurred, and retrying the request is pointless.
194 \fBlwres_hstrerror\fR(3)
195 translates these error codes to suitable error messages.
196 .SH "SEE ALSO"
198 \fBRFC2553\fR(),
199 \fBlwres\fR(3),
200 \fBlwres_gethostent\fR(3),
201 \fBlwres_getaddrinfo\fR(3),
202 \fBlwres_getnameinfo\fR(3),
203 \fBlwres_hstrerror\fR(3).
204 .SH "COPYRIGHT"
205 Copyright \(co 2004, 2005, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
207 Copyright \(co 2000, 2001, 2003 Internet Software Consortium.