socket: Do not use AF_NETLINK in __opensock
authorFlorian Weimer <fweimer@redhat.com>
Mon, 22 Nov 2021 13:41:14 +0000 (14:41 +0100)
committerFlorian Weimer <fweimer@redhat.com>
Mon, 22 Nov 2021 13:47:13 +0000 (14:47 +0100)
It is not possible to use interface ioctls with netlink sockets
on all Linux kernels.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
socket/opensock.c

index ff94d27a61bd388931c636c49100b6e15416cbcc..3e35821f91643456919e56566b6d26126d98509d 100644 (file)
 int
 __opensock (void)
 {
-  /* SOCK_DGRAM is supported by all address families.  (Netlink does
-     not support SOCK_STREAM.)  */
+  /* SOCK_DGRAM is supported by all address families.  */
   int type = SOCK_DGRAM | SOCK_CLOEXEC;
   int fd;
 
-#ifdef AF_NETLINK
-  fd = __socket (AF_NETLINK, type, 0);
-  if (fd >= 0)
-    return fd;
-#endif
-
   fd = __socket (AF_UNIX, type, 0);
   if (fd >= 0)
     return fd;