| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- package internet
- import (
- "context"
- "v2ray.com/core/common/net"
- )
- type Dialer func(ctx context.Context, dest net.Destination) (Connection, error)
- var (
- transportDialerCache = make(map[string]Dialer)
- )
- func RegisterTransportDialer(protocol string, dialer Dialer) error {
- if _, found := transportDialerCache[protocol]; found {
- return newError(protocol, " dialer already registered").AtError()
- }
- transportDialerCache[protocol] = dialer
- return nil
- }
- // Dial dials a internet connection towards the given destination.
- func Dial(ctx context.Context, dest net.Destination) (Connection, error) {
- if dest.Network == net.Network_TCP {
- streamSettings := StreamSettingsFromContext(ctx)
- var protocol string
- if streamSettings != nil {
- protocol = streamSettings.ProtocolName
- } else {
- protocol = "tcp"
- pSettings, err := CreateTransportConfigByName(protocol)
- if err != nil {
- return nil, newError("failed to create default config for protocol: ", protocol).Base(err)
- }
- ctx = ContextWithStreamSettings(ctx, &MemoryStreamConfig{
- ProtocolName: protocol,
- ProtocolSettings: pSettings,
- })
- }
- dialer := transportDialerCache[protocol]
- if dialer == nil {
- return nil, newError(protocol, " dialer not registered").AtError()
- }
- return dialer(ctx, dest)
- }
- udpDialer := transportDialerCache["udp"]
- if udpDialer == nil {
- return nil, newError("UDP dialer not registered").AtError()
- }
- return udpDialer(ctx, dest)
- }
- // DialSystem calls system dialer to create a network connection.
- func DialSystem(ctx context.Context, src net.Address, dest net.Destination) (net.Conn, error) {
- return effectiveSystemDialer.Dial(ctx, src, dest)
- }
|