llarp/net/net_if.hpp

Namespaces

Name
llarp
[crypto.hpp]
llarp::net

Source code

#pragma once
// 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

namespace llarp::net
{
  std::string
  LoopbackInterfaceName();
}  // namespace llarp::net

Updated on 2026-01-10 at 22:49:45 +0000