traefik/pkg/tcp/tls.go
Ludovic Fernandez f1b085fa36 Move code to pkg
2019-03-15 09:42:03 +01:00

18 lines
284 B
Go

package tcp
import (
"crypto/tls"
"net"
)
// TLSHandler handles TLS connections
type TLSHandler struct {
Next Handler
Config *tls.Config
}
// ServeTCP terminates the TLS connection
func (t *TLSHandler) ServeTCP(conn net.Conn) {
t.Next.ServeTCP(tls.Server(conn, t.Config))
}