mirror of
https://github.com/containous/traefik.git
synced 2025-01-22 22:03:51 +03:00
b55be9fdea
Co-authored-by: Mathieu Lonjaret <mathieu.lonjaret@gmail.com>
17 lines
280 B
Go
17 lines
280 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))
|
|
}
|