You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lokinet/llarp/net.hpp

13 lines
220 B
C++

#ifndef LLARP_NET_HPP
#define LLARP_NET_HPP
#include <sys/socket.h>
#include <string>
namespace llarp {
namespace net {
bool GetIfAddr(const std::string& ifname, int af, sockaddr* addr);
}
} // namespace llarp
#endif