mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-07 01:33:15 +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
|
|
}
|