mirror of
				https://github.com/traefik/traefik.git
				synced 2025-11-04 02:11:15 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			282 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			282 B
		
	
	
	
		
			Go
		
	
	
	
	
	
package tcp
 | 
						|
 | 
						|
import (
 | 
						|
	"crypto/tls"
 | 
						|
)
 | 
						|
 | 
						|
// TLSHandler handles TLS connections.
 | 
						|
type TLSHandler struct {
 | 
						|
	Next   Handler
 | 
						|
	Config *tls.Config
 | 
						|
}
 | 
						|
 | 
						|
// ServeTCP terminates the TLS connection.
 | 
						|
func (t *TLSHandler) ServeTCP(conn WriteCloser) {
 | 
						|
	t.Next.ServeTCP(tls.Server(conn, t.Config))
 | 
						|
}
 |