Add client and service

This commit is contained in:
世界 2023-02-20 12:52:48 +08:00
parent 320d58c57a
commit 6c9bdfc858
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
16 changed files with 1173 additions and 0 deletions

20
tls.go Normal file
View file

@ -0,0 +1,20 @@
//go:build go1.20
package shadowtls
import (
sTLS "github.com/sagernet/sing-shadowtls/tls"
)
type (
sTLSConfig = sTLS.Config
sTLSConnectionState = sTLS.ConnectionState
sTLSConn = sTLS.Conn
sTLSCurveID = sTLS.CurveID
sTLSRenegotiationSupport = sTLS.RenegotiationSupport
)
var (
sTLSCipherSuites = sTLS.CipherSuites
sTLSClient = sTLS.Client
)