Refactor: new dialer impl

This commit is contained in:
xjasonlyu
2022-03-29 00:02:19 +08:00
parent 42d6c96b6b
commit a4bedf6080
16 changed files with 310 additions and 199 deletions

View File

@@ -0,0 +1,7 @@
//go:build !linux && !darwin
package dialer
func setSocketOptions(network, address string, c syscall.RawConn, opts *Options) error {
return nil
}