mirror of https://github.com/v2ray/v2ray-core
shadowsocks client factory
parent
35aa16d40d
commit
5f3f173b5e
|
@ -45,24 +45,22 @@ func (this *TimeoutValidStrategy) Invalidate() {
|
||||||
|
|
||||||
type ServerSpec struct {
|
type ServerSpec struct {
|
||||||
sync.RWMutex
|
sync.RWMutex
|
||||||
dest v2net.Destination
|
dest v2net.Destination
|
||||||
users []*User
|
users []*User
|
||||||
valid ValidationStrategy
|
valid ValidationStrategy
|
||||||
newAccount NewAccountFactory
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewServerSpec(newAccount NewAccountFactory, dest v2net.Destination, valid ValidationStrategy, users ...*User) *ServerSpec {
|
func NewServerSpec(dest v2net.Destination, valid ValidationStrategy, users ...*User) *ServerSpec {
|
||||||
return &ServerSpec{
|
return &ServerSpec{
|
||||||
dest: dest,
|
dest: dest,
|
||||||
users: users,
|
users: users,
|
||||||
valid: valid,
|
valid: valid,
|
||||||
newAccount: newAccount,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func NewServerSpecFromPB(newAccount NewAccountFactory, spec ServerEndpoint) *ServerSpec {
|
func NewServerSpecFromPB(spec ServerEndpoint) *ServerSpec {
|
||||||
dest := v2net.TCPDestination(spec.Address.AsAddress(), v2net.Port(spec.Port))
|
dest := v2net.TCPDestination(spec.Address.AsAddress(), v2net.Port(spec.Port))
|
||||||
return NewServerSpec(newAccount, dest, AlwaysValid(), spec.User...)
|
return NewServerSpec(dest, AlwaysValid(), spec.User...)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *ServerSpec) Destination() v2net.Destination {
|
func (this *ServerSpec) Destination() v2net.Destination {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
|
|
||||||
"sync"
|
"sync"
|
||||||
|
"v2ray.com/core/app"
|
||||||
"v2ray.com/core/common/alloc"
|
"v2ray.com/core/common/alloc"
|
||||||
v2io "v2ray.com/core/common/io"
|
v2io "v2ray.com/core/common/io"
|
||||||
"v2ray.com/core/common/log"
|
"v2ray.com/core/common/log"
|
||||||
|
@ -20,6 +21,19 @@ type Client struct {
|
||||||
meta *proxy.OutboundHandlerMeta
|
meta *proxy.OutboundHandlerMeta
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func NewClient(config *ClientConfig, space app.Space, meta *proxy.OutboundHandlerMeta) (*Client, error) {
|
||||||
|
serverList := protocol.NewServerList()
|
||||||
|
for _, rec := range config.Server {
|
||||||
|
serverList.AddServer(protocol.NewServerSpecFromPB(*rec))
|
||||||
|
}
|
||||||
|
client := &Client{
|
||||||
|
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
|
||||||
|
meta: meta,
|
||||||
|
}
|
||||||
|
|
||||||
|
return client, nil
|
||||||
|
}
|
||||||
|
|
||||||
func (this *Client) Dispatch(destination v2net.Destination, payload *alloc.Buffer, ray ray.OutboundRay) error {
|
func (this *Client) Dispatch(destination v2net.Destination, payload *alloc.Buffer, ray ray.OutboundRay) error {
|
||||||
defer payload.Release()
|
defer payload.Release()
|
||||||
defer ray.OutboundInput().Release()
|
defer ray.OutboundInput().Release()
|
||||||
|
@ -136,3 +150,15 @@ func (this *Client) Dispatch(destination v2net.Destination, payload *alloc.Buffe
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type ClientFactory struct{}
|
||||||
|
|
||||||
|
func (this *ClientFactory) StreamCapability() v2net.NetworkList {
|
||||||
|
return v2net.NetworkList{
|
||||||
|
Network: []v2net.Network{v2net.Network_TCP, v2net.Network_RawTCP},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (this *ClientFactory) Create(space app.Space, rawConfig interface{}, meta *proxy.OutboundHandlerMeta) (proxy.OutboundHandler, error) {
|
||||||
|
return NewClient(rawConfig.(*ClientConfig), space, meta)
|
||||||
|
}
|
||||||
|
|
|
@ -22,7 +22,7 @@ func (this *VMessOutboundHandler) handleSwitchAccount(cmd *protocol.CommandSwitc
|
||||||
}
|
}
|
||||||
dest := v2net.TCPDestination(cmd.Host, cmd.Port)
|
dest := v2net.TCPDestination(cmd.Host, cmd.Port)
|
||||||
until := time.Now().Add(time.Duration(cmd.ValidMin) * time.Minute)
|
until := time.Now().Add(time.Duration(cmd.ValidMin) * time.Minute)
|
||||||
this.serverList.AddServer(protocol.NewServerSpec(vmess.NewAccount, dest, protocol.BeforeTime(until), user))
|
this.serverList.AddServer(protocol.NewServerSpec(dest, protocol.BeforeTime(until), user))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (this *VMessOutboundHandler) handleCommand(dest v2net.Destination, cmd protocol.ResponseCommand) {
|
func (this *VMessOutboundHandler) handleCommand(dest v2net.Destination, cmd protocol.ResponseCommand) {
|
||||||
|
|
|
@ -14,7 +14,6 @@ import (
|
||||||
"v2ray.com/core/common/retry"
|
"v2ray.com/core/common/retry"
|
||||||
"v2ray.com/core/proxy"
|
"v2ray.com/core/proxy"
|
||||||
"v2ray.com/core/proxy/registry"
|
"v2ray.com/core/proxy/registry"
|
||||||
"v2ray.com/core/proxy/vmess"
|
|
||||||
"v2ray.com/core/proxy/vmess/encoding"
|
"v2ray.com/core/proxy/vmess/encoding"
|
||||||
vmessio "v2ray.com/core/proxy/vmess/io"
|
vmessio "v2ray.com/core/proxy/vmess/io"
|
||||||
"v2ray.com/core/transport/internet"
|
"v2ray.com/core/transport/internet"
|
||||||
|
@ -172,7 +171,7 @@ func (this *Factory) Create(space app.Space, rawConfig interface{}, meta *proxy.
|
||||||
|
|
||||||
serverList := protocol.NewServerList()
|
serverList := protocol.NewServerList()
|
||||||
for _, rec := range vOutConfig.Receiver {
|
for _, rec := range vOutConfig.Receiver {
|
||||||
serverList.AddServer(protocol.NewServerSpecFromPB(vmess.NewAccount, *rec))
|
serverList.AddServer(protocol.NewServerSpecFromPB(*rec))
|
||||||
}
|
}
|
||||||
handler := &VMessOutboundHandler{
|
handler := &VMessOutboundHandler{
|
||||||
serverList: serverList,
|
serverList: serverList,
|
||||||
|
|
Loading…
Reference in New Issue