summaryrefslogtreecommitdiffstats
path: root/newlib/libc/sys/linux/net/getifaddrs.3
blob: 47e50049d00ce278f0eafeaae337f1ffb5c9ec23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
GETIFADDRS(3)                      BSD Library Functions Manual                     GETIFADDRS(3)

NAME
     getifaddrs -- get interface addresses

SYNOPSIS
     #include <sys/types.h>
     #include <sys/socket.h>
     #include <ifaddrs.h>

     int
     getifaddrs(struct ifaddrs **ifap);

     void
     freeifaddrs(struct ifaddrs *ifp);

DESCRIPTION
     The getifaddrs() function stores a reference to a linked list of the network interfaces on
     the local machine in the memory referenced by ifap.  The list consists of ifaddrs struc-
     tures, as defined in the include file <ifaddrs.h>.  The ifaddrs structure contains at least
     the following entries:

         struct ifaddrs   *ifa_next;         /* Pointer to next struct */
         char             *ifa_name;         /* Interface name */
         u_int             ifa_flags;        /* Interface flags */
         struct sockaddr  *ifa_addr;         /* Interface address */
         struct sockaddr  *ifa_netmask;      /* Interface netmask */
         struct sockaddr  *ifa_broadaddr;    /* Interface broadcast address */
         struct sockaddr  *ifa_dstaddr;      /* P2P interface destination */
         void             *ifa_data;         /* Address specific data */

     The ifa_next field contains a pointer to the next structure on the list.  This field is NULL
     in last structure on the list.

     The ifa_name field contains the interface name.

     The ifa_flags field contains the interface flags, as set by ifconfig(8) utility.

     The ifa_addr field references either the address of the interface or the link level address
     of the interface, if one exists, otherwise it is NULL.  (The sa_family field of the ifa_addr
     field should be consulted to determine the format of the ifa_addr address.)

     The ifa_netmask field references the netmask associated with ifa_addr, if one is set, other-
     wise it is NULL.

     The ifa_broadaddr field, which should only be referenced for non-P2P interfaces, references
     the broadcast address associated with ifa_addr, if one exists, otherwise it is NULL.

     The ifa_dstaddr field references the destination address on a P2P interface, if one exists,
     otherwise it is NULL.

     The ifa_data field references address family specific data.  For AF_LINK addresses it con-
     tains a pointer to the struct if_data (as defined in include file <net/if.h>) which contains
     various interface attributes and statistics.  For all other address families, it contains a
     pointer to the struct ifa_data (as defined in include file <net/if.h>) which contains per-
     address interface statistics.

     The data returned by getifaddrs() is dynamically allocated and should be freed using
     freeifaddrs() when no longer needed.

RETURN VALUES
     The getifaddrs() function returns the value 0 if successful; otherwise the value -1 is re-
     turned and the global variable errno is set to indicate the error.

ERRORS
     The getifaddrs() may fail and set errno for any of the errors specified for the library rou-
     tines ioctl(2), socket(2), malloc(3) or sysctl(3).

BUGS
     If both <net/if.h> and <ifaddrs.h> are being included, <net/if.h> must be included before
     <ifaddrs.h>.

SEE ALSO
     ioctl(2), socket(2), sysctl(3), networking(4), ifconfig(8)

HISTORY
     The getifaddrs implementation first appeared in BSDi BSD/OS.

BSD                                      October 12, 1995                                     BSD