Home | History | Annotate | Download | only in DNS

Lines Matching refs:search

10  * A class that tries to locate name servers and the search path to
15 * <LI>The properties 'dns.server' and 'dns.search' (comma delimited lists)
22 * <LI>"localhost" is used as the nameserver, and the search path is empty.
82 addSearch(String search, List list) {
85 System.out.println("adding search " + search);
87 name = Name.fromString(search, Name.root);
128 * Looks in the system properties to find servers and a search path.
130 * The search path is defined by dns.search=domain1,domain2...
146 prop = System.getProperty("dns.search");
211 * Looks in /etc/resolv.conf to find servers and a search path.
212 * "nameserver" lines specify servers. "domain" and "search" lines
213 * define the search path.
245 else if (line.startsWith("search")) {
249 st.nextToken(); /* skip search */
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.
475 /** Returns all entries in the located search path */