Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ListenAndServeTLS (0.11 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/secure_serving.go

    		}
    	}()
    
    	return serverShutdownCh, listenerStoppedCh, nil
    }
    
    // tcpKeepAliveListener sets TCP keep-alive timeouts on accepted
    // connections. It's used by ListenAndServe and ListenAndServeTLS so
    // dead TCP connections (e.g. closing laptop mid-download) eventually
    // go away.
    //
    // Copied from Go 1.7.2 net/http/server.go
    type tcpKeepAliveListener struct {
    	net.Listener
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 12 20:54:07 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server.go

    		s.TLSConfig = tlsOptions.Config
    		// Passing empty strings as the cert and key files means no
    		// cert/keys are specified and GetCertificate in the TLSConfig
    		// should be called instead.
    		if err := s.ListenAndServeTLS(tlsOptions.CertFile, tlsOptions.KeyFile); err != nil {
    			klog.ErrorS(err, "Failed to listen and serve")
    			os.Exit(1)
    		}
    	} else if err := s.ListenAndServe(); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 40.1K bytes
    - Viewed (0)
Back to top