Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for DNSLookupFamilyValue (0.16 sec)

  1. pkg/bootstrap/option/instances.go

    	WildcardValue        string
    	DNSLookupFamilyValue string
    )
    
    const (
    	LocalhostIPv4       LocalhostValue       = "127.0.0.1"
    	LocalhostIPv6       LocalhostValue       = "::1"
    	WildcardIPv4        WildcardValue        = "0.0.0.0"
    	WildcardIPv6        WildcardValue        = "::"
    	DNSLookupFamilyIPv4 DNSLookupFamilyValue = "V4_ONLY"
    	DNSLookupFamilyIPv6 DNSLookupFamilyValue = "V6_ONLY"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 14 17:02:38 UTC 2024
    - 9K bytes
    - Viewed (0)
  2. pkg/bootstrap/option/instances_test.go

    			option:   option.DNSLookupFamily(option.DNSLookupFamilyIPv4),
    			expected: option.DNSLookupFamilyValue("V4_ONLY"),
    		},
    		{
    			testName: "dns lookup family v6",
    			key:      "dns_lookup_family",
    			option:   option.DNSLookupFamily(option.DNSLookupFamilyIPv6),
    			expected: option.DNSLookupFamilyValue("V6_ONLY"),
    		},
    		{
    			testName: "dns lookup family dual stack",
    			key:      "dns_lookup_family",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 20:38:02 UTC 2024
    - 22.4K bytes
    - Viewed (0)
Back to top