]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/inet_pton.3
intro.1, _exit.2, access.2, alarm.2, alloc_hugepages.2, arch_prctl.2, bind.2, chdir...
[thirdparty/man-pages.git] / man3 / inet_pton.3
CommitLineData
fea681da 1.\" Copyright 2000 Sam Varshavchik <mrsam@courier-mta.com>
cd1aabe6 2.\" and Copyright (c) 2008 Michael Kerrisk <mtk.manpages@gmail.com>
fea681da 3.\"
93015253 4.\" %%%LICENSE_START(VERBATIM)
fea681da
MK
5.\" Permission is granted to make and distribute verbatim copies of this
6.\" manual provided the copyright notice and this permission notice are
7.\" preserved on all copies.
8.\"
9.\" Permission is granted to copy and distribute modified versions of this
10.\" manual under the conditions for verbatim copying, provided that the
11.\" entire resulting derived work is distributed under the terms of a
12.\" permission notice identical to this one.
c13182ef 13.\"
fea681da
MK
14.\" Since the Linux kernel and libraries are constantly changing, this
15.\" manual page may be incorrect or out-of-date. The author(s) assume no
16.\" responsibility for errors or omissions, or for damages resulting from
17.\" the use of the information contained herein. The author(s) may not
18.\" have taken the same level of care in the production of this manual,
19.\" which is licensed free of charge, as they might when working
20.\" professionally.
c13182ef 21.\"
fea681da
MK
22.\" Formatted or processed versions of this manual, if unaccompanied by
23.\" the source, must acknowledge the copyright and authors of this work.
4b72fb64 24.\" %%%LICENSE_END
fea681da
MK
25.\"
26.\" References: RFC 2553
cd1aabe6 27.TH INET_PTON 3 2008-06-18 "Linux" "Linux Programmer's Manual"
fea681da 28.SH NAME
cd1aabe6 29inet_pton \- convert IPv4 and IPv6 addresses from text to binary form
fea681da
MK
30.SH SYNOPSIS
31.nf
fea681da 32.B #include <arpa/inet.h>
c8250206 33
fea681da 34.BI "int inet_pton(int " "af" ", const char *" "src" ", void *" "dst" );
c8250206 35.fi
fea681da
MK
36.SH DESCRIPTION
37This function converts the character string
38.I src
39into a network address structure in the
40.I af
41address family, then
42copies
43the network address structure to
44.IR dst .
cd1aabe6
MK
45The
46.I af
47argument must be either
48.B AF_INET
49or
50.BR AF_INET6 .
fea681da 51.PP
fea681da
MK
52The following address families are currently supported:
53.TP
54.B AF_INET
55.I src
56points to a character string containing an IPv4 network address in
cd1aabe6
MK
57dotted-decimal format, "\fIddd.ddd.ddd.ddd\fP", where
58.I ddd
59is a decimal number of up to three digits in the range 0 to 255.
60The address is converted to a
fea681da
MK
61.I struct in_addr
62and copied to
a5e0a0e4 63.IR dst ,
fea681da
MK
64which must be
65.I sizeof(struct in_addr)
cd1aabe6 66(4) bytes (32 bits) long.
fea681da
MK
67.TP
68.B AF_INET6
69.I src
cd1aabe6
MK
70points to a character string containing an IPv6 network address.
71The address is converted to a
fea681da
MK
72.I struct in6_addr
73and copied to
a5e0a0e4 74.IR dst ,
fea681da
MK
75which must be
76.I sizeof(struct in6_addr)
cd1aabe6
MK
77(16) bytes (128 bits) long.
78The allowed formats for IPv6 addresses follow these rules:
79.RS
80.IP 1. 3
81The preferred format is
8dcc7633 82.IR x:x:x:x:x:x:x:x .
cd1aabe6
MK
83This form consists of eight hexadecimal numbers,
84each of which expresses a 16-bit value (i.e., each
85.I x
86can be up to 4 hex digits).
87.IP 2.
88A series of contiguous zero values in the preferred format
89can be abbreviated to
90.IR :: .
91Only one instance of
92.I ::
93can occur in an address.
94For example, the loopback address
95.I 0:0:0:0:0:0:0:1
96can be abbreviated as
97.IR ::1 .
fb30b096 98The wildcard address, consisting of all zeros, can be written as
cd1aabe6
MK
99.IR :: .
100.IP 3.
101An alternate format is useful for expressing IPv4-mapped IPv6 addresses.
102This form is written as
103.IR x:x:x:x:x:x:d.d.d.d ,
104where the six leading
105.IR x s
106are hexadecimal values that define the six most-significant
10716-bit pieces of the address (i.e., 96 bits), and the
108.IR d s
109express a value in dotted-decimal notation that
110defines the least significant 32 bits of the address.
111An example of such an address is
112.IR ::FFFF:204.152.189.116 .
113.RE
114.IP
115See RFC 2373 for further details on the representation of IPv6 addresses.
47297adb 116.SH RETURN VALUE
e511ffb6 117.BR inet_pton ()
cd1aabe6 118returns 1 on success (network address was successfully converted).
fea681da
MK
1190 is returned if
120.I src
121does not contain a character string representing a valid network
122address in the specified address family.
cd1aabe6
MK
123If
124.I af
125does not contain a valid address family, \-1 is returned and
126.I errno
127is set to
128.BR EAFNOSUPPORT .
47297adb 129.SH CONFORMING TO
68e1685c 130POSIX.1-2001.
cd1aabe6
MK
131.SH NOTES
132Unlike
133.BR inet_aton (3)
134and
135.BR inet_addr (3),
136.BR inet_pton ()
137supports IPv6 addresses.
138On the other hand,
139.BR inet_pton ()
140only accepts IPv4 addresses in dotted-decimal notation, whereas
141.BR inet_aton (3)
142and
143.BR inet_addr (3)
144allow the more general numbers-and-dots notation (hexadecimal
145and octal number formats, and formats that don't require all
146four bytes to be explicitly written).
147For an interface that handles both IPv6 addresses, and IPv4
148addresses in numbers-and-dots notation, see
149.BR getaddrinfo (3).
25768803
MK
150.SH BUGS
151.B AF_INET6
152does not recognize IPv4 addresses.
153An explicit IPv4-mapped IPv6 address must be supplied in
154.I src
155instead.
cd1aabe6
MK
156.SH EXAMPLE
157The program below demonstrates the use of
158.BR inet_pton ()
159and
160.BR inet_ntop (3).
161Here are some example runs:
162.in +4n
163.nf
164
b43a3b30 165.RB "$" " ./a.out i6 0:0:0:0:0:0:0:0"
cd1aabe6 166::
b43a3b30 167.RB "$" " ./a.out i6 1:0:0:0:0:0:0:8"
cd1aabe6 1681::8
b43a3b30 169.RB "$" " ./a.out i6 0:0:0:0:0:FFFF:204.152.189.116"
cd1aabe6 170::ffff:204.152.189.116
cd1aabe6
MK
171.fi
172.in
9c330504 173.SS Program source
d84d0300 174\&
cd1aabe6
MK
175.nf
176#include <arpa/inet.h>
177#include <stdio.h>
178#include <stdlib.h>
179#include <string.h>
180
181int
182main(int argc, char *argv[])
183{
184 unsigned char buf[sizeof(struct in6_addr)];
185 int domain, s;
186 char str[INET6_ADDRSTRLEN];
187
188 if (argc != 3) {
189 fprintf(stderr, "Usage: %s {i4|i6|<num>} string\\n", argv[0]);
190 exit(EXIT_FAILURE);
191 }
192
193 domain = (strcmp(argv[1], "i4") == 0) ? AF_INET :
194 (strcmp(argv[1], "i6") == 0) ? AF_INET6 : atoi(argv[1]);
195
196 s = inet_pton(domain, argv[2], buf);
197 if (s <= 0) {
198 if (s == 0)
199 fprintf(stderr, "Not in presentation format");
200 else
201 perror("inet_pton");
202 exit(EXIT_FAILURE);
203 }
204
205 if (inet_ntop(domain, buf, str, INET6_ADDRSTRLEN) == NULL) {
206 perror("inet_ntop");
207 exit(EXIT_FAILURE);
cd60dedd 208 }
cd1aabe6
MK
209
210 printf("%s\\n", str);
211
212 exit(EXIT_SUCCESS);
213}
214.fi
47297adb 215.SH SEE ALSO
cd1aabe6
MK
216.BR getaddrinfo (3),
217.BR inet (3),
e37e3282 218.BR inet_ntop (3)