sing-box/common/tls/ech_stub.go

14 lines
377 B
Go
Raw Normal View History

2022-09-10 02:27:00 +00:00
//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) {
2022-09-10 02:27:00 +00:00
return nil, E.New(`ECH is not included in this build, rebuild with -tags with_ech`)
}