Add uTLS support for shadowtls v3

This commit is contained in:
世界 2023-02-20 14:08:13 +08:00
parent 5bcfb71737
commit f26785c0ba
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
8 changed files with 66 additions and 40 deletions

View file

@ -12,8 +12,7 @@ import (
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/option"
E "github.com/sagernet/sing/common/exceptions"
utls "github.com/refraction-networking/utls"
utls "github.com/sagernet/utls"
)
type UTLSClientConfig struct {
@ -45,6 +44,10 @@ func (e *UTLSClientConfig) Client(conn net.Conn) Conn {
return &utlsConnWrapper{utls.UClient(conn, e.config.Clone(), e.id)}
}
func (e *UTLSClientConfig) SetSessionIDGenerator(generator func(clientHello []byte, sessionID []byte) error) {
e.config.SessionIDGenerator = generator
}
type utlsConnWrapper struct {
*utls.UConn
}