clash/proxy/redir/tproxy_other.go
2020-11-09 10:46:10 +08:00

12 lines
181 B
Go

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