Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 78 of 78 for ServerName (0.26 sec)

  1. src/net/http/transport_test.go

    			t.Errorf("Host header = %q; want %q", r.Host, want)
    		}
    		if mode == http2Mode {
    			if r.TLS == nil {
    				t.Errorf("r.TLS == nil")
    			} else if r.TLS.ServerName != punyDomain {
    				t.Errorf("TLS.ServerName = %q; want %q", r.TLS.ServerName, punyDomain)
    			}
    		}
    		w.Header().Set("Hit-Handler", "1")
    	}), func(tr *Transport) {
    		if tr.TLSClientConfig != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    	Size            uint32
    	Flags           uint32
    	ExtraPolicyPara Pointer
    }
    
    type SSLExtraCertChainPolicyPara struct {
    	Size       uint32
    	AuthType   uint32
    	Checks     uint32
    	ServerName *uint16
    }
    
    type CertChainPolicyStatus struct {
    	Size              uint32
    	Error             uint32
    	ChainIndex        uint32
    	ElementIndex      uint32
    	ExtraPolicyStatus Pointer
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbFile.java

     * address. These name resolution mechanisms and their resolution order
     * can be changed (See <a href="../../../resolver.html">Setting Name
     * Resolution Properties</a>). The servername and path components are
     * not case sensitive but the domain, username, and password components
     * are. It is also likely that properties must be specified for jcifs
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu May 23 01:50:13 UTC 2024
    - 82.3K bytes
    - Viewed (1)
  4. src/net/http/h2_bundle.go

    			return
    		}
    
    		if sc.tlsState.ServerName == "" {
    			// Client must use SNI, but we don't enforce that anymore,
    			// since it was causing problems when connecting to bare IP
    			// addresses during development.
    			//
    			// TODO: optionally enforce? Or enforce at the time we receive
    			// a new request, and verify the ServerName matches the :authority?
    			// But that precludes proxy situations, perhaps.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  5. pkg/config/validation/validation.go

    		// depending on the protocol, we can differentiate between hosts when proxying:
    		// - with HTTP, the authority header can be used
    		// - with HTTPS/TLS with SNI, the ServerName can be used
    		// however, for plain TCP there is no way to differentiate between the
    		// hosts so we consider it invalid, unless the resolution type is NONE
    		// (because the hosts are ignored).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 04:03:33 UTC 2024
    - 107.2K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"Client", Func, 0},
    		{"ClientAuthType", Type, 0},
    		{"ClientHelloInfo", Type, 4},
    		{"ClientHelloInfo.CipherSuites", Field, 4},
    		{"ClientHelloInfo.Conn", Field, 8},
    		{"ClientHelloInfo.ServerName", Field, 4},
    		{"ClientHelloInfo.SignatureSchemes", Field, 8},
    		{"ClientHelloInfo.SupportedCurves", Field, 4},
    		{"ClientHelloInfo.SupportedPoints", Field, 4},
    		{"ClientHelloInfo.SupportedProtos", Field, 8},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    					call: defaultIngress.CallOrFail,
    					opts: echo.CallOptions{
    						Port: echo.Port{
    							ServicePort: 443,
    							Protocol:    protocol.HTTPS,
    						},
    						TLS: echo.TLS{
    							ServerName: sni,
    							Alpn:       al,
    						},
    						Check:   check.Error(),
    						Timeout: 5 * time.Second,
    					},
    				},
    				)
    			}
    		}
    		t.RunTraffic(TrafficTestCase{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. pkg/generated/openapi/zz_generated.openapi.go

    							Type:        []string{"boolean"},
    							Format:      "",
    						},
    					},
    					"serverName": {
    						SchemaProps: spec.SchemaProps{
    							Description: "ServerName is passed to the server for SNI and is used in the client to check server certificates against. If ServerName is empty, the hostname used to contact the server is used.",
    							Type:        []string{"string"},
    							Format:      "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
Back to top