1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 09:57:04 -04:00
v2fly/transport/internet/tcp/dialer.go

52 lines
1.5 KiB
Go
Raw Normal View History

2016-06-14 16:54:08 -04:00
package tcp
import (
"context"
2017-01-01 15:19:12 -05:00
2017-01-03 09:16:48 -05:00
"v2ray.com/core/common"
"v2ray.com/core/common/net"
2016-08-20 14:55:45 -04:00
"v2ray.com/core/transport/internet"
2017-04-20 05:00:15 -04:00
"v2ray.com/core/transport/internet/tls"
2016-06-14 16:54:08 -04:00
)
func getTCPSettingsFromContext(ctx context.Context) *Config {
rawTCPSettings := internet.TransportSettingsFromContext(ctx)
if rawTCPSettings == nil {
return nil
}
return rawTCPSettings.(*Config)
}
2018-01-02 12:57:22 -05:00
// Dial dials a new TCP connection to the given destination.
func Dial(ctx context.Context, dest net.Destination) (internet.Connection, error) {
2018-02-22 09:26:00 -05:00
newError("dialing TCP to ", dest).WithContext(ctx).WriteToLog()
src := internet.DialerSourceFromContext(ctx)
conn, err := internet.DialSystem(ctx, src, dest)
if err != nil {
return nil, err
2016-06-14 16:54:08 -04:00
}
2017-12-16 18:53:17 -05:00
2018-01-02 12:16:36 -05:00
if config := tls.ConfigFromContext(ctx, tls.WithDestination(dest), tls.WithNextProto("h2")); config != nil {
2017-12-16 18:53:17 -05:00
conn = tls.Client(conn, config.GetTLSConfig())
}
tcpSettings := getTCPSettingsFromContext(ctx)
if tcpSettings != nil && tcpSettings.HeaderSettings != nil {
headerConfig, err := tcpSettings.HeaderSettings.GetInstance()
if err != nil {
2017-04-09 07:30:46 -04:00
return nil, newError("failed to get header settings").Base(err).AtError()
}
auth, err := internet.CreateConnectionAuthenticator(headerConfig)
if err != nil {
2017-04-09 07:30:46 -04:00
return nil, newError("failed to create header authenticator").Base(err).AtError()
2016-11-02 17:26:21 -04:00
}
conn = auth.Client(conn)
2016-09-30 10:53:40 -04:00
}
return internet.Connection(conn), nil
2016-06-14 16:54:08 -04:00
}
func init() {
common.Must(internet.RegisterTransportDialer(internet.TransportProtocol_TCP, Dial))
2016-06-14 16:54:08 -04:00
}