mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
21 lines
494 B
Go
21 lines
494 B
Go
|
//go:build !go1.20
|
||
|
|
||
|
package dialer
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"net"
|
||
|
|
||
|
M "github.com/sagernet/sing/common/metadata"
|
||
|
N "github.com/sagernet/sing/common/network"
|
||
|
)
|
||
|
|
||
|
func DialSlowContext(dialer *tcpDialer, ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
||
|
switch N.NetworkName(network) {
|
||
|
case N.NetworkTCP, N.NetworkUDP:
|
||
|
return dialer.DialContext(ctx, network, destination.String())
|
||
|
default:
|
||
|
return dialer.DialContext(ctx, network, destination.AddrString())
|
||
|
}
|
||
|
}
|