Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ensureRooted (0.47 sec)

  1. src/net/dnsconfig_unix.go

    				}
    			}
    
    		case "domain": // set search path to just this domain
    			if len(f) > 1 {
    				conf.search = []string{ensureRooted(f[1])}
    			}
    
    		case "search": // set search path to given servers
    			conf.search = make([]string, 0, len(f)-1)
    			for i := 1; i < len(f); i++ {
    				name := ensureRooted(f[i])
    				if name == "." {
    					continue
    				}
    				conf.search = append(conf.search, name)
    			}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top