Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 181 for servername (0.27 sec)

  1. pkg/hbone/dialer.go

    	if config == nil {
    		config = &tls.Config{MinVersion: tls.VersionTLS12}
    	}
    	// If no ServerName is set, infer the ServerName
    	// from the hostname we're connecting to.
    	if config.ServerName == "" {
    		// Make a copy to avoid polluting argument or default.
    		c := config.Clone()
    		c.ServerName = hostname
    		config = c
    	}
    
    	conn := tls.Client(rawConn, config)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 15:56:41 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/util/proxy/dial.go

    				// tls.Handshake() requires ServerName or InsecureSkipVerify
    				tlsConfig = &tls.Config{
    					InsecureSkipVerify: true,
    				}
    			} else if len(tlsConfig.ServerName) == 0 && !tlsConfig.InsecureSkipVerify {
    				// tls.HandshakeContext() requires ServerName or InsecureSkipVerify
    				// infer the ServerName from the hostname we're connecting to.
    				inferredHost := dialAddr
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 23 22:33:38 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/util/webhook/client.go

    		cfg.NextProtos = []string{"http/1.1"}
    
    		serverName := cc.Service.Name + "." + cc.Service.Namespace + ".svc"
    
    		host := net.JoinHostPort(serverName, strconv.Itoa(int(port)))
    		cfg.Host = "https://" + host
    		cfg.APIPath = cc.Service.Path
    		// Set the server name if not already set
    		if len(cfg.TLSClientConfig.ServerName) == 0 {
    			cfg.TLSClientConfig.ServerName = serverName
    		}
    
    		delegateDialer := cfg.Dial
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 04 09:09:10 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  4. pkg/test/echo/cmd/client/main.go

    	rootCmd.PersistentFlags().StringSliceVarP(&alpn, "alpn", "", nil, "alpn to set")
    	rootCmd.PersistentFlags().StringVarP(&serverName, "server-name", "", serverName, "server name to set")
    
    	rootCmd.PersistentFlags().StringVar(&hboneAddress, "hbone", "", "address to send HBONE request to")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/server/config_selfclient.go

    	c, err := s.NewClientConfig(loopbackCert)
    	if err != nil || c == nil {
    		return c, err
    	}
    
    	c.BearerToken = token
    	// override the ServerName to select our loopback certificate via SNI. This name is also
    	// used by the client to compare the returns server certificate against.
    	c.TLSClientConfig.ServerName = LoopbackClientServerNameOverride
    
    	return c, nil
    }
    
    // LoopbackHostPort returns the host and port loopback REST clients should use
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 23 00:06:34 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client.go

    func (c *Conn) makeClientHello() (*clientHelloMsg, *keySharePrivateKeys, *echContext, error) {
    	config := c.config
    	if len(config.ServerName) == 0 && !config.InsecureSkipVerify {
    		return nil, nil, nil, errors.New("tls: either ServerName or InsecureSkipVerify must be specified in the tls.Config")
    	}
    
    	nextProtosLength := 0
    	for _, proto := range config.NextProtos {
    		if l := len(proto); l == 0 || l > 255 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. src/crypto/tls/quic_test.go

    	}
    }
    
    func TestQUICSessionResumption(t *testing.T) {
    	clientConfig := testConfig.Clone()
    	clientConfig.MinVersion = VersionTLS13
    	clientConfig.ClientSessionCache = NewLRUClientSessionCache(1)
    	clientConfig.ServerName = "example.go.dev"
    
    	serverConfig := testConfig.Clone()
    	serverConfig.MinVersion = VersionTLS13
    
    	cli := newTestQUICClient(t, clientConfig)
    	cli.conn.SetTransportParameters(nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  8. src/internal/syscall/windows/zsyscall_windows.go

    	}
    	return
    }
    
    func NetShareAdd(serverName *uint16, level uint32, buf *byte, parmErr *uint16) (neterr error) {
    	r0, _, _ := syscall.Syscall6(procNetShareAdd.Addr(), 4, uintptr(unsafe.Pointer(serverName)), uintptr(level), uintptr(unsafe.Pointer(buf)), uintptr(unsafe.Pointer(parmErr)), 0, 0)
    	if r0 != 0 {
    		neterr = syscall.Errno(r0)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pkg/test/echo/server/forwarder/config.go

    }
    
    func newTLSConfig(c *Config) (*tls.Config, error) {
    	r := c.Request
    	tlsConfig := &tls.Config{
    		GetClientCertificate: c.getClientCertificate,
    		NextProtos:           r.GetAlpn().GetValue(),
    		ServerName:           r.ServerName,
    		MinVersion:           tls.VersionTLS12,
    	}
    	if r.CaCertFile != "" {
    		certData, err := os.ReadFile(r.CaCertFile)
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 08 09:39:20 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  10. src/crypto/tls/tls_test.go

    			}
    			// NegotiatedProtocolIsMutual on the server side is unspecified.
    
    			if ss.ServerName != serverName {
    				t.Errorf("Got server name %q, expected %q", ss.ServerName, serverName)
    			}
    			if cs.ServerName != serverName {
    				t.Errorf("Got server name on client connection %q, expected %q", cs.ServerName, serverName)
    			}
    
    			if len(ss.PeerCertificates) != 1 || len(cs.PeerCertificates) != 1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 60.5K bytes
    - Viewed (0)
Back to top