mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
39 lines
764 B
Go
39 lines
764 B
Go
package domainsocket
|
|
|
|
import (
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
|
"github.com/v2fly/v2ray-core/v5/transport/internet"
|
|
)
|
|
|
|
const (
|
|
protocolName = "domainsocket"
|
|
sizeofSunPath = 108
|
|
)
|
|
|
|
func (c *Config) GetUnixAddr() (*net.UnixAddr, error) {
|
|
path := c.Path
|
|
if path == "" {
|
|
return nil, newError("empty domain socket path")
|
|
}
|
|
if c.Abstract && path[0] != '@' {
|
|
path = "@" + path
|
|
}
|
|
if c.Abstract && c.Padding {
|
|
raw := []byte(path)
|
|
addr := make([]byte, sizeofSunPath)
|
|
copy(addr, raw)
|
|
path = string(addr)
|
|
}
|
|
return &net.UnixAddr{
|
|
Name: path,
|
|
Net: "unix",
|
|
}, nil
|
|
}
|
|
|
|
func init() {
|
|
common.Must(internet.RegisterProtocolConfigCreator(protocolName, func() interface{} {
|
|
return new(Config)
|
|
}))
|
|
}
|