mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-26 10:31:29 +00:00
17 lines
306 B
Go
17 lines
306 B
Go
//go:build go1.20
|
|
|
|
package shadowtls
|
|
|
|
import sTLS "github.com/sagernet/sing-box/transport/shadowtls/tls"
|
|
|
|
type (
|
|
sTLSConfig = sTLS.Config
|
|
sTLSConnectionState = sTLS.ConnectionState
|
|
sTLSConn = sTLS.Conn
|
|
)
|
|
|
|
var (
|
|
sTLSCipherSuites = sTLS.CipherSuites
|
|
sTLSClient = sTLS.Client
|
|
)
|