2022-09-10 02:27:00 +00:00
|
|
|
//go:build !with_utls
|
|
|
|
|
|
|
|
package tls
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
)
|
|
|
|
|
2022-11-09 03:43:03 +00:00
|
|
|
func NewUTLSClient(router adapter.Router, serverAddress string, options option.OutboundTLSOptions) (Config, error) {
|
2022-09-10 02:27:00 +00:00
|
|
|
return nil, E.New(`uTLS is not included in this build, rebuild with -tags with_utls`)
|
|
|
|
}
|
2023-02-25 08:24:08 +00:00
|
|
|
|
|
|
|
func NewRealityClient(router adapter.Router, serverAddress string, options option.OutboundTLSOptions) (Config, error) {
|
|
|
|
return nil, E.New(`uTLS, which is required by reality client is not included in this build, rebuild with -tags with_utls`)
|
|
|
|
}
|