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

46 lines
1.1 KiB
Go
Raw Normal View History

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
2018-04-09 15:09:24 +00:00
func getSettingsFromContext(ctx context.Context) *Config {
rawSettings := internet.TransportSettingsFromContext(ctx)
if rawSettings == nil {
return nil
}
return rawSettings.(*Config)
}
func Dial(ctx context.Context, dest net.Destination) (internet.Connection, error) {
settings := getSettingsFromContext(ctx)
if settings == nil {
return nil, newError("domain socket settings is not specified.").AtError()
}
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.ConfigFromContext(ctx); config != nil {
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() {
common.Must(internet.RegisterTransportDialer(internet.TransportProtocol_DomainSocket, Dial))
2017-11-03 12:02:05 +00:00
}