mirror of
https://github.com/oxen-io/lokinet
synced 2023-12-14 06:53:00 +01:00
13 lines
290 B
C++
13 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
|