| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- package internet
- import (
- "errors"
- "net"
- v2net "v2ray.com/core/common/net"
- )
- var (
- ErrUnsupportedStreamType = errors.New("Unsupported stream type.")
- )
- type DialerOptions struct {
- Stream *StreamSettings
- }
- type Dialer func(src v2net.Address, dest v2net.Destination, options DialerOptions) (Connection, error)
- var (
- TCPDialer Dialer
- KCPDialer Dialer
- RawTCPDialer Dialer
- UDPDialer Dialer
- WSDialer Dialer
- )
- func Dial(src v2net.Address, dest v2net.Destination, settings *StreamSettings) (Connection, error) {
- var connection Connection
- var err error
- dialerOptions := DialerOptions{
- Stream: settings,
- }
- if dest.Network == v2net.Network_TCP {
- switch {
- case settings.IsCapableOf(StreamConnectionTypeTCP):
- connection, err = TCPDialer(src, dest, dialerOptions)
- case settings.IsCapableOf(StreamConnectionTypeKCP):
- connection, err = KCPDialer(src, dest, dialerOptions)
- case settings.IsCapableOf(StreamConnectionTypeWebSocket):
- connection, err = WSDialer(src, dest, dialerOptions)
- // This check has to be the last one.
- case settings.IsCapableOf(StreamConnectionTypeRawTCP):
- connection, err = RawTCPDialer(src, dest, dialerOptions)
- default:
- return nil, ErrUnsupportedStreamType
- }
- if err != nil {
- return nil, err
- }
- return connection, nil
- }
- return UDPDialer(src, dest, dialerOptions)
- }
- func DialToDest(src v2net.Address, dest v2net.Destination) (net.Conn, error) {
- return effectiveSystemDialer.Dial(src, dest)
- }
|