mirror of
https://github.com/oxen-io/lokinet.git
synced 2024-11-17 15:25:35 +00:00
13 lines
220 B
C++
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
|