Home | History | Annotate | Download | only in DNS

Lines Matching defs:servers

10  * A class that tries to locate name servers and the search path to
16 * are checked. The servers can either be IP addresses or hostnames
36 private String [] servers = null;
52 if (servers == null || searchlist == null) {
115 if (servers == null && lserver.size() > 0)
116 servers = (String []) lserver.toArray(new String[0]);
128 * Looks in the system properties to find servers and a search path.
129 * Servers are defined by dns.server=server1,server2...
153 return (servers != null && searchlist != null);
211 * Looks in /etc/resolv.conf to find servers and a search path.
212 * "nameserver" lines specify servers. "domain" and "search" lines
377 if (servers == null) {
389 * Calls winipcfg and parses the result to find servers and a search path.
408 * Calls ipconfig and parses the result to find servers and a search path.
461 /** Returns all located servers */
463 servers() {
464 return servers;
470 if (servers == null)
472 return servers[0];