mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-18 20:47:53 +00:00
afdc91f21f
Puts a value into System Config, similar to how DNS push works. closes #1466 https://apple.stackexchange.com/questions/309430/ipv6-dns-resolution-on-macos-high-sierra
22 lines
487 B
C++
22 lines
487 B
C++
#ifndef MAC_DNS_HELPER
|
|
#define MAC_DNS_HELPER
|
|
|
|
#include <vector>
|
|
#include "../node/InetAddress.hpp"
|
|
#include "../node/MAC.hpp"
|
|
|
|
namespace ZeroTier {
|
|
|
|
class MacDNSHelper
|
|
{
|
|
public:
|
|
static void setDNS(uint64_t nwid, const char *domain, const std::vector<InetAddress> &servers);
|
|
static void removeDNS(uint64_t nwid);
|
|
static bool addIps(uint64_t nwid, const MAC mac, const char *dev, const std::vector<InetAddress> &addrs);
|
|
static bool removeIps(uint64_t nwid);
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|