mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-06 09:16:58 +08:00
10 lines
167 B
Go
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
|
|
}
|