Add ShadowTLS protocol v3

This commit is contained in:
世界
2023-02-18 14:55:47 +08:00
committed by GitHub
parent 1610bdc5dd
commit 21cb227bc2
53 changed files with 23127 additions and 229 deletions

View File

@@ -0,0 +1,16 @@
//go:build !go1.20
package shadowtls
import sTLS "github.com/sagernet/sing-box/transport/shadowtls/tls_go119"
type (
sTLSConfig = sTLS.Config
sTLSConnectionState = sTLS.ConnectionState
sTLSConn = sTLS.Conn
)
var (
sTLSCipherSuites = sTLS.CipherSuites
sTLSClient = sTLS.Client
)