]> CyberLeo.Net >> Repos - FreeBSD/releng/10.0.git/blob - lib/libc/net/getifaddrs.3
- Copy stable/10 (r259064) to releng/10.0 as part of the
[FreeBSD/releng/10.0.git] / lib / libc / net / getifaddrs.3
1 .\"     $KAME: getifaddrs.3,v 1.4 2000/05/17 14:13:14 itojun Exp $
2 .\"     BSDI    getifaddrs.3,v 2.5 2000/02/23 14:51:59 dab Exp
3 .\"
4 .\" Copyright (c) 1995, 1999
5 .\"     Berkeley Software Design, Inc.  All rights reserved.
6 .\"
7 .\" Redistribution and use in source and binary forms, with or without
8 .\" modification, are permitted provided that the following conditions
9 .\" are met:
10 .\" 1. Redistributions of source code must retain the above copyright
11 .\"    notice, this list of conditions and the following disclaimer.
12 .\"
13 .\" THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
14 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 .\" ARE DISCLAIMED.  IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
17 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 .\" SUCH DAMAGE.
24 .\"
25 .\" $FreeBSD$
26 .\"
27 .Dd May 21, 2013
28 .Dt GETIFADDRS 3
29 .Os
30 .Sh NAME
31 .Nm getifaddrs
32 .Nd get interface addresses
33 .Sh SYNOPSIS
34 .In ifaddrs.h
35 .Ft int
36 .Fn getifaddrs "struct ifaddrs **ifap"
37 .Ft void
38 .Fn freeifaddrs "struct ifaddrs *ifp"
39 .Sh DESCRIPTION
40 The
41 .Fn getifaddrs
42 function stores a reference to a linked list of the network interfaces
43 on the local machine in the memory referenced by
44 .Fa ifap .
45 The list consists of
46 .Nm ifaddrs
47 structures, as defined in the include file
48 .In ifaddrs.h .
49 The
50 .Nm ifaddrs
51 structure contains at least the following entries:
52 .Bd -literal
53     struct ifaddrs   *ifa_next;         /* Pointer to next struct */
54     char             *ifa_name;         /* Interface name */
55     u_int             ifa_flags;        /* Interface flags */
56     struct sockaddr  *ifa_addr;         /* Interface address */
57     struct sockaddr  *ifa_netmask;      /* Interface netmask */
58     struct sockaddr  *ifa_broadaddr;    /* Interface broadcast address */
59     struct sockaddr  *ifa_dstaddr;      /* P2P interface destination */
60     void             *ifa_data;         /* Address specific data */
61 .Ed
62 .Pp
63 The
64 .Li ifa_next
65 field contains a pointer to the next structure on the list.
66 This field is
67 .Dv NULL
68 in last structure on the list.
69 .Pp
70 The
71 .Li ifa_name
72 field contains the interface name.
73 .Pp
74 The
75 .Li ifa_flags
76 field contains the interface flags, as set by
77 .Xr ifconfig 8
78 utility.
79 .Pp
80 The
81 .Li ifa_addr
82 field references either the address of the interface or the link level
83 address of the interface, if one exists, otherwise it is NULL.
84 (The
85 .Li sa_family
86 field of the
87 .Li ifa_addr
88 field should be consulted to determine the format of the
89 .Li ifa_addr
90 address.)
91 .Pp
92 The
93 .Li ifa_netmask
94 field references the netmask associated with
95 .Li ifa_addr ,
96 if one is set, otherwise it is NULL.
97 .Pp
98 The
99 .Li ifa_broadaddr
100 field,
101 which should only be referenced for non-P2P interfaces,
102 references the broadcast address associated with
103 .Li ifa_addr ,
104 if one exists, otherwise it is NULL.
105 .Pp
106 The
107 .Li ifa_dstaddr
108 field references the destination address on a P2P interface,
109 if one exists, otherwise it is NULL.
110 .Pp
111 The
112 .Li ifa_data
113 field references address family specific data.
114 For
115 .Dv AF_LINK
116 addresses it contains a pointer to the
117 .Fa struct if_data
118 (as defined in include file
119 .In net/if.h )
120 which contains various interface attributes and statistics.
121 For all other address families, it contains a pointer to the
122 .Fa struct ifa_data
123 (as defined in include file
124 .In net/if.h )
125 which contains per-address interface statistics.
126 .Pp
127 The data returned by
128 .Fn getifaddrs
129 is dynamically allocated and should be freed using
130 .Fn freeifaddrs
131 when no longer needed.
132 .Sh RETURN VALUES
133 .Rv -std getifaddrs
134 .Sh ERRORS
135 The
136 .Fn getifaddrs
137 may fail and set
138 .Va errno
139 for any of the errors specified for the library routines
140 .Xr ioctl 2 ,
141 .Xr socket 2 ,
142 .Xr malloc 3
143 or
144 .Xr sysctl 3 .
145 .Sh SEE ALSO
146 .Xr ioctl 2 ,
147 .Xr socket 2 ,
148 .Xr sysctl 3 ,
149 .Xr networking 4 ,
150 .Xr ifconfig 8
151 .Sh HISTORY
152 The
153 .Nm
154 implementation first appeared in BSDi
155 .Bsx .
156 .Sh BUGS
157 If both
158 .In net/if.h
159 and
160 .In ifaddrs.h
161 are being included,
162 .In net/if.h
163 .Em must
164 be included before
165 .In ifaddrs.h .