Dial dial to remote machine
func( network string, address string, timeout time.Duration) (net.Conn, error)
| 24 | |
| 25 | // Dial dial to remote machine |
| 26 | type Dial func( |
| 27 | network string, address string, timeout time.Duration) (net.Conn, error) |
| 28 | |
| 29 | // TCPDial build a TCP dialer |
| 30 | func TCPDial() Dial { |
nothing calls this directly
no outgoing calls
no test coverage detected