Remove building with NOCRYPTO option
[minix.git] / external / bsd / bind / dist / lib / lwres / man / lwres_getaddrinfo.3
blob917b27e63aaedb660613b8d3ded232cfaafe70c5
1 .\"     $NetBSD: lwres_getaddrinfo.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_getaddrinfo
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_GETADDRINFO" "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_getaddrinfo, lwres_freeaddrinfo \- socket address structure to host and service name
36 .SH "SYNOPSIS"
37 .nf
38 #include <lwres/netdb.h>
39 .fi
40 .HP 22
41 .BI "int lwres_getaddrinfo(const\ char\ *" "hostname" ", const\ char\ *" "servname" ", const\ struct\ addrinfo\ *" "hints" ", struct\ addrinfo\ **" "res" ");"
42 .HP 24
43 .BI "void lwres_freeaddrinfo(struct\ addrinfo\ *" "ai" ");"
44 .PP
45 If the operating system does not provide a
46 \fBstruct addrinfo\fR, the following structure is used:
47 .PP
48 .RS 4
49 .nf
50 struct  addrinfo {
51         int             ai_flags;       /* AI_PASSIVE, AI_CANONNAME */
52         int             ai_family;      /* PF_xxx */
53         int             ai_socktype;    /* SOCK_xxx */
54         int             ai_protocol;    /* 0 or IPPROTO_xxx for IPv4 and IPv6 */
55         size_t          ai_addrlen;     /* length of ai_addr */
56         char            *ai_canonname;  /* canonical name for hostname */
57         struct sockaddr *ai_addr;       /* binary address */
58         struct addrinfo *ai_next;       /* next structure in linked list */
60 .fi
61 .RE
62 .sp
63 .SH "DESCRIPTION"
64 .PP
65 \fBlwres_getaddrinfo()\fR
66 is used to get a list of IP addresses and port numbers for host
67 \fIhostname\fR
68 and service
69 \fIservname\fR. The function is the lightweight resolver's implementation of
70 \fBgetaddrinfo()\fR
71 as defined in RFC2133.
72 \fIhostname\fR
73 and
74 \fIservname\fR
75 are pointers to null\-terminated strings or
76 \fBNULL\fR.
77 \fIhostname\fR
78 is either a host name or a numeric host address string: a dotted decimal IPv4 address or an IPv6 address.
79 \fIservname\fR
80 is either a decimal port number or a service name as listed in
81 \fI/etc/services\fR.
82 .PP
83 \fIhints\fR
84 is an optional pointer to a
85 \fBstruct addrinfo\fR. This structure can be used to provide hints concerning the type of socket that the caller supports or wishes to use. The caller can supply the following structure elements in
86 \fI*hints\fR:
87 .PP
88 \fBai_family\fR
89 .RS 4
90 The protocol family that should be used. When
91 \fBai_family\fR
92 is set to
93 \fBPF_UNSPEC\fR, it means the caller will accept any protocol family supported by the operating system.
94 .RE
95 .PP
96 \fBai_socktype\fR
97 .RS 4
98 denotes the type of socket \(em
99 \fBSOCK_STREAM\fR,
100 \fBSOCK_DGRAM\fR
102 \fBSOCK_RAW\fR
103 \(em that is wanted. When
104 \fBai_socktype\fR
105 is zero the caller will accept any socket type.
108 \fBai_protocol\fR
109 .RS 4
110 indicates which transport protocol is wanted: IPPROTO_UDP or IPPROTO_TCP. If
111 \fBai_protocol\fR
112 is zero the caller will accept any protocol.
115 \fBai_flags\fR
116 .RS 4
117 Flag bits. If the
118 \fBAI_CANONNAME\fR
119 bit is set, a successful call to
120 \fBlwres_getaddrinfo()\fR
121 will return a null\-terminated string containing the canonical name of the specified hostname in
122 \fBai_canonname\fR
123 of the first
124 \fBaddrinfo\fR
125 structure returned. Setting the
126 \fBAI_PASSIVE\fR
127 bit indicates that the returned socket address structure is intended for used in a call to
128 \fBbind\fR(2). In this case, if the hostname argument is a
129 \fBNULL\fR
130 pointer, then the IP address portion of the socket address structure will be set to
131 \fBINADDR_ANY\fR
132 for an IPv4 address or
133 \fBIN6ADDR_ANY_INIT\fR
134 for an IPv6 address.
136 When
137 \fBai_flags\fR
138 does not set the
139 \fBAI_PASSIVE\fR
140 bit, the returned socket address structure will be ready for use in a call to
141 \fBconnect\fR(2)
142 for a connection\-oriented protocol or
143 \fBconnect\fR(2),
144 \fBsendto\fR(2), or
145 \fBsendmsg\fR(2)
146 if a connectionless protocol was chosen. The IP address portion of the socket address structure will be set to the loopback address if
147 \fIhostname\fR
148 is a
149 \fBNULL\fR
150 pointer and
151 \fBAI_PASSIVE\fR
152 is not set in
153 \fBai_flags\fR.
156 \fBai_flags\fR
157 is set to
158 \fBAI_NUMERICHOST\fR
159 it indicates that
160 \fIhostname\fR
161 should be treated as a numeric string defining an IPv4 or IPv6 address and no name resolution should be attempted.
164 All other elements of the
165 \fBstruct addrinfo\fR
166 passed via
167 \fIhints\fR
168 must be zero.
171 \fIhints\fR
173 \fBNULL\fR
174 is treated as if the caller provided a
175 \fBstruct addrinfo\fR
176 initialized to zero with
177 \fBai_family\fRset to
178 \fBPF_UNSPEC\fR.
180 After a successful call to
181 \fBlwres_getaddrinfo()\fR,
182 \fI*res\fR
183 is a pointer to a linked list of one or more
184 \fBaddrinfo\fR
185 structures. Each
186 \fBstruct addrinfo\fR
187 in this list cn be processed by following the
188 \fBai_next\fR
189 pointer, until a
190 \fBNULL\fR
191 pointer is encountered. The three members
192 \fBai_family\fR,
193 \fBai_socktype\fR, and
194 \fBai_protocol\fR
195 in each returned
196 \fBaddrinfo\fR
197 structure contain the corresponding arguments for a call to
198 \fBsocket\fR(2). For each
199 \fBaddrinfo\fR
200 structure in the list, the
201 \fBai_addr\fR
202 member points to a filled\-in socket address structure of length
203 \fBai_addrlen\fR.
205 All of the information returned by
206 \fBlwres_getaddrinfo()\fR
207 is dynamically allocated: the addrinfo structures, and the socket address structures and canonical host name strings pointed to by the
208 \fBaddrinfo\fRstructures. Memory allocated for the dynamically allocated structures created by a successful call to
209 \fBlwres_getaddrinfo()\fR
210 is released by
211 \fBlwres_freeaddrinfo()\fR.
212 \fIai\fR
213 is a pointer to a
214 \fBstruct addrinfo\fR
215 created by a call to
216 \fBlwres_getaddrinfo()\fR.
217 .SH "RETURN VALUES"
219 \fBlwres_getaddrinfo()\fR
220 returns zero on success or one of the error codes listed in
221 \fBgai_strerror\fR(3)
222 if an error occurs. If both
223 \fIhostname\fR
225 \fIservname\fR
227 \fBNULL\fR
228 \fBlwres_getaddrinfo()\fR
229 returns
230 \fBEAI_NONAME\fR.
231 .SH "SEE ALSO"
233 \fBlwres\fR(3),
234 \fBlwres_getaddrinfo\fR(3),
235 \fBlwres_freeaddrinfo\fR(3),
236 \fBlwres_gai_strerror\fR(3),
237 \fBRFC2133\fR(),
238 \fBgetservbyname\fR(3),
239 \fBbind\fR(2),
240 \fBconnect\fR(2),
241 \fBsendto\fR(2),
242 \fBsendmsg\fR(2),
243 \fBsocket\fR(2).
244 .SH "COPYRIGHT"
245 Copyright \(co 2004, 2005, 2007, 2014 Internet Systems Consortium, Inc. ("ISC")
247 Copyright \(co 2000, 2001, 2003 Internet Software Consortium.