mirror of
https://github.com/SagerNet/sing-shadowtls.git
synced 2025-04-03 20:27:35 +03:00
Add client and service
This commit is contained in:
parent
320d58c57a
commit
6c9bdfc858
16 changed files with 1173 additions and 0 deletions
20
tls.go
Normal file
20
tls.go
Normal 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
|
||||
)
|
Loading…
Add table
Add a link
Reference in a new issue