mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-05 03:53:44 +02:00
forgot accessors
This commit is contained in:
parent
2851a9577c
commit
fbbcf292c6
1 changed files with 4 additions and 0 deletions
|
@ -22,4 +22,8 @@ public class VirtualNetworkDNS implements Comparable<VirtualNetworkDNS> {
|
||||||
public int compareTo(VirtualNetworkDNS o) {
|
public int compareTo(VirtualNetworkDNS o) {
|
||||||
return domain.compareTo(o.domain);
|
return domain.compareTo(o.domain);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getSearchDomain() { return domain; }
|
||||||
|
|
||||||
|
public ArrayList<InetSocketAddress> getServers() { return servers; }
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue