clash/proxy/redir/tproxy_other.go

13 lines
181 B
Go
Raw Normal View History

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