clash/listener/tproxy/setsockopt_other.go

13 lines
183 B
Go
Raw Normal View History

2021-08-18 05:26:23 +00:00
//go: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")
}