Commit bfdbe155 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Stub for if_nameindex()

parent 9b18dec7
...@@ -566,7 +566,7 @@ dnl Check for system libs needed ...@@ -566,7 +566,7 @@ dnl Check for system libs needed
need_libc=false need_libc=false
dnl Check for usual libc functions dnl Check for usual libc functions
AC_CHECK_FUNCS([daemon fcntl fdopendir fstatvfs fork getenv getpwuid_r gettimeofday isatty lstat memalign mmap openat pread posix_fadvise posix_madvise posix_memalign setlocale stricmp strnicmp uselocale]) AC_CHECK_FUNCS([daemon fcntl fdopendir fstatvfs fork getenv getpwuid_r gettimeofday if_nameindex isatty lstat memalign mmap openat pread posix_fadvise posix_madvise posix_memalign setlocale stricmp strnicmp uselocale])
AC_REPLACE_FUNCS([asprintf atof atoll dirfd flockfile getcwd getdelim getpid gmtime_r lldiv localtime_r nrand48 rewind setenv strcasecmp strcasestr strdup strlcpy strncasecmp strndup strnlen strsep strtof strtok_r strtoll swab tdestroy vasprintf]) AC_REPLACE_FUNCS([asprintf atof atoll dirfd flockfile getcwd getdelim getpid gmtime_r lldiv localtime_r nrand48 rewind setenv strcasecmp strcasestr strdup strlcpy strncasecmp strndup strnlen strsep strtof strtok_r strtoll swab tdestroy vasprintf])
AC_CHECK_FUNCS(fdatasync,, AC_CHECK_FUNCS(fdatasync,,
[AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.]) [AC_DEFINE(fdatasync, fsync, [Alias fdatasync() to fsync() if missing.])
......
...@@ -278,6 +278,17 @@ struct pollfd ...@@ -278,6 +278,17 @@ struct pollfd
int vlc_poll (struct pollfd *, unsigned, int); int vlc_poll (struct pollfd *, unsigned, int);
#endif #endif
#ifndef HAVE_IF_NAMEINDEX
struct if_nameindex
{
unsigned if_index;
char *if_name;
};
# define if_nametoindex(name) atoi(name)
# define if_nameindex() (errno = ENOBUFS, NULL)
# define if_freenameindex(list) (void)0
#endif
/* search.h */ /* search.h */
#ifndef HAVE_SEARCH_H #ifndef HAVE_SEARCH_H
typedef struct entry { typedef struct entry {
......
...@@ -45,7 +45,6 @@ ...@@ -45,7 +45,6 @@
# define IP_ADD_MEMBERSHIP 5 # define IP_ADD_MEMBERSHIP 5
# endif # endif
# define EAFNOSUPPORT WSAEAFNOSUPPORT # define EAFNOSUPPORT WSAEAFNOSUPPORT
# define if_nametoindex( str ) atoi( str )
#else #else
# include <unistd.h> # include <unistd.h>
# ifdef HAVE_NET_IF_H # ifdef HAVE_NET_IF_H
...@@ -53,10 +52,6 @@ ...@@ -53,10 +52,6 @@
# endif # endif
#endif #endif
#ifdef __OS2__
# define if_nametoindex( str ) atoi( str )
#endif
#ifdef HAVE_LINUX_DCCP_H #ifdef HAVE_LINUX_DCCP_H
# include <linux/dccp.h> # include <linux/dccp.h>
# ifndef SOCK_DCCP /* provisional API */ # ifndef SOCK_DCCP /* provisional API */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment