(path string)
| 307 | } |
| 308 | |
| 309 | func dialFromPath(path string) dial { |
| 310 | return func(ctx context.Context, _, _ string) (net.Conn, error) { |
| 311 | d := &net.Dialer{} |
| 312 | return d.DialContext(ctx, "unix", path) |
| 313 | } |
| 314 | } |
no outgoing calls
no test coverage detected