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++

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