| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | 
							- package internet
 
- import (
 
- 	"errors"
 
- 	"net"
 
- 	v2net "v2ray.com/core/common/net"
 
- )
 
- var (
 
- 	ErrUnsupportedStreamType = errors.New("Unsupported stream type.")
 
- )
 
- type DialerOptions struct {
 
- 	Stream   *StreamConfig
 
- 	ProxyTag string
 
- }
 
- type Dialer func(src v2net.Address, dest v2net.Destination, options DialerOptions) (Connection, error)
 
- var (
 
- 	TCPDialer    Dialer
 
- 	KCPDialer    Dialer
 
- 	RawTCPDialer Dialer
 
- 	UDPDialer    Dialer
 
- 	WSDialer     Dialer
 
- 	ProxyDialer  Dialer
 
- )
 
- func Dial(src v2net.Address, dest v2net.Destination, options DialerOptions) (Connection, error) {
 
- 	if len(options.ProxyTag) > 0 && ProxyDialer != nil {
 
- 		return ProxyDialer(src, dest, options)
 
- 	}
 
- 	var connection Connection
 
- 	var err error
 
- 	if dest.Network == v2net.Network_TCP {
 
- 		switch options.Stream.Network {
 
- 		case v2net.Network_TCP:
 
- 			connection, err = TCPDialer(src, dest, options)
 
- 		case v2net.Network_KCP:
 
- 			connection, err = KCPDialer(src, dest, options)
 
- 		case v2net.Network_WebSocket:
 
- 			connection, err = WSDialer(src, dest, options)
 
- 			// This check has to be the last one.
 
- 		case v2net.Network_RawTCP:
 
- 			connection, err = RawTCPDialer(src, dest, options)
 
- 		default:
 
- 			return nil, ErrUnsupportedStreamType
 
- 		}
 
- 		if err != nil {
 
- 			return nil, err
 
- 		}
 
- 		return connection, nil
 
- 	}
 
- 	return UDPDialer(src, dest, options)
 
- }
 
- func DialToDest(src v2net.Address, dest v2net.Destination) (net.Conn, error) {
 
- 	return effectiveSystemDialer.Dial(src, dest)
 
- }
 
 
  |