mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 06:33:02 +00:00
39 lines
778 B
Go
39 lines
778 B
Go
|
// +build !confonly
|
||
|
|
||
|
package domainsocket
|
||
|
|
||
|
import (
|
||
|
"github.com/xtls/xray-core/v1/common"
|
||
|
"github.com/xtls/xray-core/v1/common/net"
|
||
|
"github.com/xtls/xray-core/v1/transport/internet"
|
||
|
)
|
||
|
|
||
|
const protocolName = "domainsocket"
|
||
|
const 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)
|
||
|
}))
|
||
|
}
|