lokinet/llarp/net.hpp
Jeff Becker 58247343bf
format
2018-02-01 12:07:01 -05:00

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