mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-28 03:21:27 +00:00
15 lines
224 B
Go
15 lines
224 B
Go
|
//go:build !go1.23
|
||
|
// +build !go1.23
|
||
|
|
||
|
package tls
|
||
|
|
||
|
import (
|
||
|
"crypto/tls"
|
||
|
|
||
|
"github.com/xtls/xray-core/common/errors"
|
||
|
)
|
||
|
|
||
|
func ApplyECH(c *Config, config *tls.Config) error {
|
||
|
return errors.New("Win7 does not support ECH")
|
||
|
}
|