Dialer 拨号器接口 Dialer interface
| 19 | // Dialer 拨号器接口 |
| 20 | // Dialer interface |
| 21 | type Dialer interface { |
| 22 | // Dial 连接到指定网络上的地址 |
| 23 | // Connects to the address on the named network |
| 24 | Dial(network, addr string) (c net.Conn, err error) |
| 25 | } |
| 26 | |
| 27 | type connector struct { |
| 28 | option *ClientOption |
no outgoing calls
no test coverage detected