1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-02 20:15:24 +00:00
v2fly/transport/internet/domainsocket/dial.go

38 lines
909 B
Go
Raw Normal View History

2018-04-12 15:44:23 +00:00
// +build !windows
2018-08-27 18:56:49 +00:00
// +build !wasm
2019-02-01 19:08:21 +00:00
// +build !confonly
2018-04-12 15:44:23 +00:00
2017-11-03 12:02:05 +00:00
package domainsocket
2017-11-22 13:53:22 +00:00
import (
"context"
2018-04-09 15:09:24 +00:00
"v2ray.com/core/common"
"v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/internet/tls"
2017-11-22 13:53:22 +00:00
)
2017-11-03 12:02:05 +00:00
func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.MemoryStreamConfig) (internet.Connection, error) {
settings := streamSettings.ProtocolSettings.(*Config)
2018-04-09 15:09:24 +00:00
addr, err := settings.GetUnixAddr()
2017-11-22 13:53:22 +00:00
if err != nil {
return nil, err
}
2018-04-09 15:09:24 +00:00
conn, err := net.DialUnix("unix", nil, addr)
2017-11-22 13:53:22 +00:00
if err != nil {
2018-04-09 15:09:24 +00:00
return nil, newError("failed to dial unix: ", settings.Path).Base(err).AtWarning()
}
if config := tls.ConfigFromStreamSettings(streamSettings); config != nil {
2018-04-09 15:09:24 +00:00
return tls.Client(conn, config.GetTLSConfig(tls.WithDestination(dest))), nil
2017-11-22 13:53:22 +00:00
}
2018-04-09 15:09:24 +00:00
return conn, nil
}
func init() {
2018-08-06 11:48:35 +00:00
common.Must(internet.RegisterTransportDialer(protocolName, Dial))
2017-11-03 12:02:05 +00:00
}