directDialer 直连拨号器
| 247 | |
| 248 | // directDialer 直连拨号器 |
| 249 | type directDialer struct { |
| 250 | timeout time.Duration |
| 251 | localAddr string // 本地网卡IP地址 |
| 252 | stats *ProxyStats |
| 253 | } |
| 254 | |
| 255 | func (d *directDialer) Dial(network, address string) (net.Conn, error) { |
| 256 | return d.DialContext(context.Background(), network, address) |
nothing calls this directly
no outgoing calls
no test coverage detected