diff options
Diffstat (limited to 'src/network/if_nametoindex.c')
-rw-r--r-- | src/network/if_nametoindex.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/network/if_nametoindex.c b/src/network/if_nametoindex.c new file mode 100644 index 00000000..419931f9 --- /dev/null +++ b/src/network/if_nametoindex.c @@ -0,0 +1,18 @@ +#define _GNU_SOURCE +#include <net/if.h> +#include <sys/socket.h> +#include <sys/ioctl.h> +#include <string.h> +#include "syscall.h" + +unsigned if_nametoindex(const char *name) +{ + struct ifreq ifr; + int fd, r; + + if ((fd = socket(AF_UNIX, SOCK_DGRAM, 0)) < 0) return -1; + strncpy(ifr.ifr_name, name, sizeof ifr.ifr_name); + r = ioctl(fd, SIOCGIFINDEX, &ifr); + __syscall(SYS_close, fd); + return r < 0 ? r : ifr.ifr_ifindex; +} |