libowfat/socket/socket_getifidx.c
leitner 82a4ae868d broken lose32 port using mingw (don't use!!!)
initial Solaris /dev/poll port
2003-11-06 20:47:59 +00:00

16 lines
257 B
C

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