mirror of
https://github.com/shtorm-7/sing-box-extended.git
synced 2026-09-15 21:00:27 +00:00
16 lines
308 B
Go
16 lines
308 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) (rawSpoofer, error) {
|
|
return nil, E.New("tls_spoof: unsupported platform")
|
|
}
|