#ifndef LLARP_NET_HPP #define LLARP_NET_HPP #include #include #include #include #include #include #include #include #include #include // for itoa #include // for addrinfo #ifndef _WIN32 #include #include #include #else #include #include #include #define inet_aton(x, y) inet_pton(AF_INET, x, y) #endif bool operator==(const sockaddr& a, const sockaddr& b); bool operator==(const sockaddr_in& a, const sockaddr_in& b); bool operator==(const sockaddr_in6& a, const sockaddr_in6& b); bool operator<(const sockaddr_in6& a, const sockaddr_in6& b); bool operator<(const in6_addr& a, const in6_addr& b); bool operator==(const in6_addr& a, const in6_addr& b); namespace llarp { bool IsIPv4Bogon(const huint32_t& addr); bool IsBogon(const in6_addr& addr); bool IsBogon(const huint128_t addr); bool IsBogonRange(const in6_addr& host, const in6_addr& mask); bool AllInterfaces(int af, IpAddress& addr); /// get first network interface with public address bool GetBestNetIF(std::string& ifname, int af = AF_INET); /// look at adapter ranges and find a free one std::optional FindFreeRange(); /// look at adapter names and find a free one std::optional FindFreeTun(); /// get network interface address for network interface with ifname std::optional GetIFAddr(const std::string& ifname, int af = AF_INET); /// get an interface's ip6 address std::optional GetInterfaceIP6(std::string ifname); #ifdef _WIN32 namespace net { std::optional GetIfIndex(std::string ip); } #endif } // namespace llarp #endif