| 45 | func DialFast(addr string) (net.Conn, error) { |
| 46 | ctx, cancel := context.WithTimeout(context.Background(), dialTimeout) |
| 47 | defer cancel() |
| 48 | return DialFastContext(ctx, addr) |
| 49 | } |
nothing calls this directly
no outgoing calls
no test coverage detected