lokinet/llarp/net/net_if.hpp
2019-12-15 07:09:19 -05:00

14 lines
290 B
C++

#ifndef LLARP_NET_NET_IF_HPP
#define LLARP_NET_NET_IF_HPP
#ifndef _WIN32
// this file is a shim include for #include <net/if.h>
#if defined(__linux__)
#include <linux/if.h>
extern "C" unsigned int
if_nametoindex(const char* __ifname) __THROW;
#else
#include <net/if.h>
#endif
#endif
#endif