clash/listener/tproxy/setsockopt_other.go
2021-08-18 13:26:23 +08:00

14 lines
200 B
Go

//go:build !linux
// +build !linux
package tproxy
import (
"errors"
"syscall"
)
func setsockopt(rc syscall.RawConn, addr string) error {
return errors.New("not supported on current platform")
}