1 .\" $FreeBSD: src/lib/libc/net/getifaddrs.3,v 1.6 2001/10/01 16:08:55 ru Exp $
2 .\" $KAME: getifaddrs.3,v 1.4 2000/05/17 14:13:14 itojun Exp $
3 .\" BSDI getifaddrs.3,v 2.5 2000/02/23 14:51:59 dab Exp
5 .\" Copyright (c) 1995, 1999
6 .\" Berkeley Software Design, Inc. All rights reserved.
8 .\" Redistribution and use in source and binary forms, with or without
9 .\" modification, are permitted provided that the following conditions
11 .\" 1. Redistributions of source code must retain the above copyright
12 .\" notice, this list of conditions and the following disclaimer.
14 .\" THIS SOFTWARE IS PROVIDED BY Berkeley Software Design, Inc. ``AS IS'' AND
15 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 .\" ARE DISCLAIMED. IN NO EVENT SHALL Berkeley Software Design, Inc. BE LIABLE
18 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
30 .Nd get interface addresses
36 .Fn getifaddrs "struct ifaddrs **ifap"
38 .Fn freeifaddrs "struct ifaddrs *ifp"
42 function stores a reference to a linked list of the network interfaces
43 on the local machine in the memory referenced by
47 structures, as defined in the include file
51 structure contains at least the following entries:
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 */
65 field contains a pointer to the next structure on the list.
68 in last structure on the list.
72 field contains the interface name.
76 field contains the interface flags, as set by
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.
88 field should be consulted to determine the format of the
94 field references the netmask associated with
96 if one is set, otherwise it is NULL.
101 which should only be referenced for non-P2P interfaces,
102 references the broadcast address associated with
104 if one exists, otherwise it is NULL.
108 field references the destination address on a P2P interface,
109 if one exists, otherwise it is NULL.
113 field references address family specific data. For
115 addresses it contains a pointer to the
117 (as defined in include file
119 which contains various interface attributes and statistics.
120 For all other address families, it contains a pointer to the
122 (as defined in include file
124 which contains per-address interface statistics.
128 is dynamically allocated and should be freed using
130 when no longer needed.
138 for any of the errors specified for the library routines
163 implementation first appeared in BSDi