clash/listener/tproxy/setsockopt_other.go

13 lines
182 B
Go
Raw Normal View History

// +build !linux
2021-06-13 09:23:10 +00:00
package tproxy
import (
"errors"
"syscall"
)
func setsockopt(rc syscall.RawConn, addr string) error {
2020-11-18 16:56:36 +00:00
return errors.New("not supported on current platform")
}