Files
mars-libowfat/socket/socket_getifidx.c
2025-01-20 18:07:12 +00:00

16 lines
266 B
C

#include <sys/types.h>
#ifndef __MINGW32__
#include <sys/socket.h>
#include <net/if.h>
#endif
#include <libowfat/socket.h>
#include "haven2i.h"
uint32 socket_getifidx(const char* ifname) {
#ifdef HAVE_N2I
return if_nametoindex(ifname);
#else
return 0;
#endif
}