Dialer 拨号器接口
| 70 | |
| 71 | // Dialer 拨号器接口 |
| 72 | type Dialer interface { |
| 73 | Dial(network, address string) (net.Conn, error) |
| 74 | DialContext(ctx context.Context, network, address string) (net.Conn, error) |
| 75 | } |
| 76 | |
| 77 | // TLSDialer TLS拨号器接口 |
| 78 | type TLSDialer interface { |
no outgoing calls
no test coverage detected