clash/listener/tproxy/setsockopt_other.go
2021-06-13 17:23:10 +08:00

12 lines
182 B
Go

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