Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ONION (0.03 sec)

  1. src/net/dnsclient_unix_test.go

    			continue
    		}
    	}
    }
    
    // Issue 13705: don't try to resolve onion addresses, etc
    func TestAvoidDNSName(t *testing.T) {
    	tests := []struct {
    		name  string
    		avoid bool
    	}{
    		{"foo.com", false},
    		{"foo.com.", false},
    
    		{"foo.onion.", true},
    		{"foo.onion", true},
    		{"foo.ONION", true},
    		{"foo.ONION.", true},
    
    		// But do resolve *.local address; Issue 16739
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix.go

    // use DNS. Currently this includes only .onion, per RFC 7686. See
    // golang.org/issue/13705. Does not cover .local names (RFC 6762),
    // see golang.org/issue/16739.
    func avoidDNS(name string) bool {
    	if name == "" {
    		return true
    	}
    	if name[len(name)-1] == '.' {
    		name = name[:len(name)-1]
    	}
    	return stringsHasSuffixFold(name, ".onion")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top