Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for LocalhostAddress (0.23 sec)

  1. pilot/pkg/networking/core/listener_address.go

    )
    
    const (
    	// WildcardAddress binds to all IP addresses
    	WildcardAddress = "0.0.0.0"
    
    	// WildcardIPv6Address binds to all IPv6 addresses
    	WildcardIPv6Address = "::"
    
    	// LocalhostAddress for local binding
    	LocalhostAddress = "127.0.0.1"
    
    	// LocalhostIPv6Address for local binding
    	LocalhostIPv6Address = "::1"
    
    	// 6 is the magical number for inbound: 15006, 127.0.0.6, ::6
    	InboundPassthroughBindIpv4 = "127.0.0.6"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Mar 28 17:09:02 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NameServiceClientImpl.java

        @Override
        public NbtAddress getLocalHost () {
            return this.localhostAddress;
        }
    
    
        /**
         * {@inheritDoc}
         *
         * @see jcifs.NameServiceClient#getLocalName()
         */
        @Override
        public Name getLocalName () {
            if ( this.localhostAddress != null ) {
                return this.localhostAddress.hostName;
            }
            return null;
        }
    
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Aug 14 14:26:22 UTC 2022
    - 38.2K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_test.go

    		expected [2]string
    	}{
    		{
    			name: "ipv4 only",
    			proxy: &model.Proxy{
    				IPAddresses: []string{"1.1.1.1", "127.0.0.1", "2.2.2.2"},
    			},
    			expected: [2]string{WildcardAddress, LocalhostAddress},
    		},
    		{
    			name: "ipv6 only",
    			proxy: &model.Proxy{
    				IPAddresses: []string{"1111:2222::1", "::1", "2222:3333::1"},
    			},
    			expected: [2]string{WildcardIPv6Address, LocalhostIPv6Address},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 93.6K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/cluster_builder.go

    			opts.policy = util.ShallowCopyTrafficPolicy(opts.policy)
    		}
    		opts.policy.ConnectionPool = sidecarConnPool
    	}
    	cb.applyTrafficPolicy(opts)
    
    	if bind != LocalhostAddress && bind != LocalhostIPv6Address {
    		// iptables will redirect our own traffic to localhost back to us if we do not use the "magic" upstream bind
    		// config which will be skipped.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 31.6K bytes
    - Viewed (0)
Back to top