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