1 /* Copyright (C) 1999,2002,2003,2004,2005,2006 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
3 Contributed by Andreas Jaeger <aj@suse.de>.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, write to the Free
17 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
21 #include <kernel-features.h>
23 /* Variable to signal whether SIOCGIFCONF is not available. */
24 #if __ASSUME_SIOCGIFNAME == 0 || 1
25 static int old_siocgifconf
;
27 # define old_siocgifconf 0
32 __ifreq (struct ifreq
**ifreqs
, int *num_ifs
, int sockfd
)
51 /* We may be able to get the needed buffer size directly, rather than
53 if (! old_siocgifconf
)
57 if (__ioctl (fd
, SIOCGIFCONF
, &ifc
) < 0 || ifc
.ifc_len
== 0)
59 # if __ASSUME_SIOCGIFNAME == 0
62 rq_len
= RQ_IFS
* sizeof (struct ifreq
);
68 rq_len
= RQ_IFS
* sizeof (struct ifreq
);
70 /* Read all the interfaces out of the kernel. */
74 void *newp
= realloc (ifc
.ifc_buf
, ifc
.ifc_len
);
76 || (ifc
.ifc_buf
= newp
, __ioctl (fd
, SIOCGIFCONF
, &ifc
)) < 0)
88 if (!old_siocgifconf
|| ifc
.ifc_len
< rq_len
)
94 nifs
= ifc
.ifc_len
/ sizeof (struct ifreq
);
100 *ifreqs
= realloc (ifc
.ifc_buf
, nifs
* sizeof (struct ifreq
));