Files
sing-box/common/tlsspoof/raw_stub.go
T
2026-04-22 13:51:27 +08:00

16 lines
305 B
Go

//go:build !linux && !darwin && !(windows && (amd64 || 386))
package tlsspoof
import (
"net"
E "github.com/sagernet/sing/common/exceptions"
)
const PlatformSupported = false
func newRawSpoofer(conn net.Conn, method Method) (Spoofer, error) {
return nil, E.New("tls_spoof: unsupported platform")
}