mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 12:27:36 +03:00
Add uTLS client
This commit is contained in:
parent
3ad4370fa5
commit
2f437a0382
15 changed files with 331 additions and 44 deletions
13
common/tls/ech_stub.go
Normal file
13
common/tls/ech_stub.go
Normal 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`)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue