Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 46 for ServerName (0.21 sec)

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

    		SetCurrentClientCertDetails: &hcm.HttpConnectionManager_SetCurrentClientCertDetails{
    			Subject: proto.BoolTrue,
    			Uri:     true,
    			Dns:     true,
    		},
    		ServerName:                 ph.ServerName,
    		ServerHeaderTransformation: ph.ServerHeaderTransformation,
    		GenerateRequestId:          ph.GenerateRequestID,
    		UseRemoteAddress:           proto.BoolFalse,
    	}
    
    	// Protocol settings
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  2. src/internal/syscall/windows/syscall_windows.go

    	Permissions uint32
    	MaxUses     uint32
    	CurrentUses uint32
    	Path        *uint16
    	Passwd      *uint16
    }
    
    //sys  NetShareAdd(serverName *uint16, level uint32, buf *byte, parmErr *uint16) (neterr error) = netapi32.NetShareAdd
    //sys  NetShareDel(serverName *uint16, netName *uint16, reserved uint32) (neterr error) = netapi32.NetShareDel
    
    const (
    	FILE_NAME_NORMALIZED = 0x0
    	FILE_NAME_OPENED     = 0x8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_server_tls13.go

    		if hs.clientHello.quicTransportParameters != nil {
    			c.sendAlert(alertUnsupportedExtension)
    			return errors.New("tls: client sent an unexpected quic_transport_parameters extension")
    		}
    	}
    
    	c.serverName = hs.clientHello.serverName
    	return nil
    }
    
    func (hs *serverHandshakeStateTLS13) checkForResumption() error {
    	c := hs.c
    
    	if c.config.SessionTicketsDisabled {
    		return nil
    	}
    
    	modeOK := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  4. pkg/test/echo/proto/echo.pb.go

    	Alpn *Alpn `protobuf:"bytes,13,opt,name=alpn,proto3" json:"alpn,omitempty"`
    	// Server name (SNI) to present in TLS connections. If not set, Host will be used for http requests.
    	ServerName string `protobuf:"bytes,20,opt,name=serverName,proto3" json:"serverName,omitempty"`
    	// Expected response determines what string to look for in the response to validate TCP requests succeeded.
    	// If not set, defaults to "StatusCode=200"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 33.3K bytes
    - Viewed (0)
  5. src/crypto/tls/boring_test.go

    		clientConfig := testConfig.Clone()
    		clientConfig.RootCAs = pool
    		clientConfig.InsecureSkipVerify = false
    		clientConfig.ServerName = "example.com"
    
    		serverConfig := testConfig.Clone()
    		serverConfig.Certificates = []Certificate{{Certificate: list, PrivateKey: key}}
    		serverConfig.BuildNameToCertificate()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top