mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-21 01:12:26 +08:00
hurd if_index: Explicitly use AF_INET for if index discovery
5bf07e1b3a
("Linux: Simplify __opensock and fix race condition [BZ #28353]")
made __opensock try NETLINK then UNIX then INET. On the Hurd, only INET
knows about network interfaces, so better actually specify that in
if_index.
This commit is contained in:
parent
1d20f33ff4
commit
1d3decee99
@ -32,7 +32,7 @@ unsigned int
|
||||
__if_nametoindex (const char *ifname)
|
||||
{
|
||||
struct ifreq ifr;
|
||||
int fd = __opensock ();
|
||||
int fd = __socket (AF_INET, SOCK_DGRAM, 0);
|
||||
|
||||
if (fd < 0)
|
||||
return 0;
|
||||
@ -84,7 +84,7 @@ __if_nameindex (void)
|
||||
error_t err = 0;
|
||||
char data[2048];
|
||||
file_t server;
|
||||
int fd = __opensock ();
|
||||
int fd = __socket (AF_INET, SOCK_DGRAM, 0);
|
||||
struct ifconf ifc;
|
||||
unsigned int nifs, i;
|
||||
struct if_nameindex *idx = NULL;
|
||||
@ -169,7 +169,7 @@ char *
|
||||
__if_indextoname (unsigned int ifindex, char ifname[IF_NAMESIZE])
|
||||
{
|
||||
struct ifreq ifr;
|
||||
int fd = __opensock ();
|
||||
int fd = __socket (AF_INET, SOCK_DGRAM, 0);
|
||||
|
||||
if (fd < 0)
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user