mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-07 17:51:16 +08:00
9 lines
123 B
Go
Executable File
9 lines
123 B
Go
Executable File
package dialer
|
|
|
|
import "net"
|
|
|
|
func init() {
|
|
net.DefaultResolver.PreferGo = true
|
|
net.DefaultResolver.Dial = DialContext
|
|
}
|