lokinet/llarp/net/net_if.hpp
2024-02-01 04:48:55 -08:00

24 lines
465 B
C++

#pragma once
#ifndef _WIN32
// this file is a shim include for #include <net/if.h>
#if defined(__linux__)
#include <linux/if.h>
extern "C" unsigned int
#ifndef __GLIBC__
if_nametoindex(const char* __ifname);
#else
if_nametoindex(const char* __ifname) __THROW;
#endif
#else
#include <net/if.h>
#endif
#endif
#include <string>
namespace llarp::net
{
/// get the name of the loopback interface
std::string LoopbackInterfaceName();
} // namespace llarp::net