clash/listener/tproxy/setsockopt_other.go
2022-03-16 12:10:13 +08:00

13 lines
183 B
Go

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