Add uTLS client

This commit is contained in:
世界 2022-09-10 10:27:00 +08:00
parent 3ad4370fa5
commit 2f437a0382
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
15 changed files with 331 additions and 44 deletions

13
common/tls/ech_stub.go Normal file
View file

@ -0,0 +1,13 @@
//go:build !with_ech
package tls
import (
"github.com/sagernet/sing-box/adapter"
"github.com/sagernet/sing-box/option"
E "github.com/sagernet/sing/common/exceptions"
)
func newECHClient(router adapter.Router, serverAddress string, options option.OutboundTLSOptions) (Config, error) {
return nil, E.New(`ECH is not included in this build, rebuild with -tags with_ech`)
}