Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 124 for ServerName (0.24 sec)

  1. src/crypto/x509/root_windows.go

    	servernamep, err := syscall.UTF16PtrFromString(strings.TrimSuffix(opts.DNSName, "."))
    	if err != nil {
    		return err
    	}
    	sslPara := &syscall.SSLExtraCertChainPolicyPara{
    		AuthType:   syscall.AUTHTYPE_SERVER,
    		ServerName: servernamep,
    	}
    	sslPara.Size = uint32(unsafe.Sizeof(*sslPara))
    
    	para := &syscall.CertChainPolicyPara{
    		ExtraPolicyPara: (syscall.Pointer)(unsafe.Pointer(sslPara)),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:41:40 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. pilot/pkg/networking/core/listener.go

    		httpOpts: &httpListenerOpts{
    			rds:              model.RDSHttpProxy,
    			useRemoteAddress: false,
    			connectionManager: &hcm.HttpConnectionManager{
    				HttpProtocolOptions:        httpOpts,
    				ServerName:                 ph.ServerName,
    				ServerHeaderTransformation: ph.ServerHeaderTransformation,
    				GenerateRequestId:          ph.GenerateRequestID,
    			},
    			suppressEnvoyDebugHeaders: ph.SuppressDebugHeaders,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  3. pilot/cmd/pilot-agent/options/options.go

    	// certSigner is cert signer for workload cert
    	certSigner = env.Register("ISTIO_META_CERT_SIGNER", "",
    		"The cert signer info for workload cert")
    
    	istiodSAN = env.Register("ISTIOD_SAN", "",
    		"Override the ServerName used to validate Istiod certificate. "+
    			"Can be used as an alternative to setting /etc/hosts for VMs - discovery address will be an IP:port")
    
    	minimumDrainDurationEnv = env.Register("MINIMUM_DRAIN_DURATION",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 09 19:21:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  4. src/crypto/tls/conn_test.go

    			if c == &config.Certificates[i] {
    				return i
    			}
    		}
    		return -1
    	}
    
    	certificateForName := func(name string) *Certificate {
    		clientHello := &ClientHelloInfo{
    			ServerName: name,
    		}
    		if cert, err := config.getCertificate(clientHello); err != nil {
    			t.Errorf("unable to get certificate for name '%s': %s", name, err)
    			return nil
    		} else {
    			return cert
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/gateway_test.go

    						SetCurrentClientCertDetails: &hcm.HttpConnectionManager_SetCurrentClientCertDetails{
    							Subject: proto.BoolTrue,
    							Cert:    true,
    							Uri:     true,
    							Dns:     true,
    						},
    						ServerName: EnvoyServerName,
    						HttpProtocolOptions: &core.Http1ProtocolOptions{
    							AcceptHttp_10: true,
    						},
    						Proxy_100Continue: true,
    					},
    					class:    istionetworking.ListenerClassGateway,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 144K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/tlsconfig.go

    	if !ok {
    		return nil, errors.New("dynamiccertificates: unexpected config type")
    	}
    
    	tlsConfigCopy := tlsConfig.Clone()
    
    	// if the client set SNI information, just use our "normal" SNI flow
    	if len(clientHello.ServerName) > 0 {
    		return tlsConfigCopy, nil
    	}
    
    	// if the client didn't set SNI, then we need to inspect the requested IP so that we can choose
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. src/syscall/security_windows.go

    	NetSetupUnjoined
    	NetSetupWorkgroupName
    	NetSetupDomainName
    )
    
    type UserInfo10 struct {
    	Name       *uint16
    	Comment    *uint16
    	UsrComment *uint16
    	FullName   *uint16
    }
    
    //sys	NetUserGetInfo(serverName *uint16, userName *uint16, level uint32, buf **byte) (neterr error) = netapi32.NetUserGetInfo
    //sys	NetGetJoinInformation(server *uint16, name **uint16, bufType *uint32) (neterr error) = netapi32.NetGetJoinInformation
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  8. src/crypto/tls/conn.go

    	// verifiedChains contains the certificate chains that we built, as
    	// opposed to the ones presented by the server.
    	verifiedChains [][]*x509.Certificate
    	// serverName contains the server name indicated by the client, if any.
    	serverName string
    	// secureRenegotiation is true if the server echoed the secure
    	// renegotiation extension. (This is meaningless as a server because
    	// renegotiation is not supported in that case.)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe.go

    			endpoint = "https://" + endpoint
    		}
    		u, err := url.Parse(endpoint)
    		if err != nil {
    			return nil, fmt.Errorf("failed to split the SPIFFE bundle URL: %v", err)
    		}
    
    		config := &tls.Config{
    			ServerName: u.Hostname(),
    			RootCAs:    caCertPool,
    			MinVersion: tls.VersionTLS12,
    		}
    
    		httpClient.Transport = &http.Transport{
    			Proxy:           http.ProxyFromEnvironment,
    			TLSClientConfig: config,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. cmd/peer-rest-server.go

    	populateAndPublish(resourceMetricsGroups, func(m MetricV2) bool {
    		if m.VariableLabels == nil {
    			m.VariableLabels = make(map[string]string, 1)
    		}
    		m.VariableLabels[serverName] = globalLocalNodeName
    		res = append(res, &m)
    		return true
    	})
    	return aoMetricsGroup.NewWith(res), nil
    }
    
    // GetPeerMetrics gets the metrics to be federated across peers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top