#include "net/base/network_interfaces_posix.h"
#include <netinet/in.h>
#include <sys/types.h>
#include <memory>
#include <set>
#include "net/base/network_interfaces.h"
namespace net {
namespace internal {
bool ShouldIgnoreInterface(const std::string& name, int policy) {
if ((policy & EXCLUDE_HOST_SCOPE_VIRTUAL_INTERFACES) &&
((name.find("vmnet") != std::string::npos) ||
(name.find("vnic") != std::string::npos))) {
return true;
}
return false;
}
bool IsLoopbackOrUnspecifiedAddress(const sockaddr* addr) {
if (addr->sa_family == AF_INET6) {
const struct sockaddr_in6* addr_in6 =
reinterpret_cast<const struct sockaddr_in6*>(addr);
const struct in6_addr* sin6_addr = &addr_in6->sin6_addr;
if (IN6_IS_ADDR_LOOPBACK(sin6_addr) || IN6_IS_ADDR_UNSPECIFIED(sin6_addr)) {
return true;
}
} else if (addr->sa_family == AF_INET) {
const struct sockaddr_in* addr_in =
reinterpret_cast<const struct sockaddr_in*>(addr);
if (addr_in->sin_addr.s_addr == INADDR_LOOPBACK ||
addr_in->sin_addr.s_addr == 0) {
return true;
}
} else {
return true;
}
return false;
}
}
WifiPHYLayerProtocol GetWifiPHYLayerProtocol() {
return WIFI_PHY_LAYER_PROTOCOL_UNKNOWN;
}
std::unique_ptr<ScopedWifiOptions> SetWifiOptions(int options) {
return nullptr;
}
}