Files
tun2socks/component/dialer/sockopt_others.go
2022-03-31 14:06:56 +08:00

10 lines
167 B
Go

//go:build !linux && !darwin
package dialer
import "syscall"
func setSocketOptions(network, address string, c syscall.RawConn, opts *Options) error {
return nil
}