46 lines
955 B
Go
46 lines
955 B
Go
package unix
|
|
|
|
import (
|
|
"context"
|
|
"net"
|
|
|
|
"github.com/go-gost/core/connector"
|
|
md "github.com/go-gost/core/metadata"
|
|
"github.com/go-gost/x/registry"
|
|
)
|
|
|
|
func init() {
|
|
registry.ConnectorRegistry().Register("unix", NewConnector)
|
|
}
|
|
|
|
type unixConnector struct {
|
|
options connector.Options
|
|
}
|
|
|
|
func NewConnector(opts ...connector.Option) connector.Connector {
|
|
options := connector.Options{}
|
|
for _, opt := range opts {
|
|
opt(&options)
|
|
}
|
|
|
|
return &unixConnector{
|
|
options: options,
|
|
}
|
|
}
|
|
|
|
func (c *unixConnector) Init(md md.Metadata) (err error) {
|
|
return nil
|
|
}
|
|
|
|
func (c *unixConnector) Connect(ctx context.Context, conn net.Conn, network, address string, opts ...connector.ConnectOption) (net.Conn, error) {
|
|
log := c.options.Logger.WithFields(map[string]any{
|
|
"remote": conn.RemoteAddr().String(),
|
|
"local": conn.LocalAddr().String(),
|
|
"network": network,
|
|
"address": address,
|
|
})
|
|
log.Debugf("connect %s/%s", address, network)
|
|
|
|
return conn, nil
|
|
}
|