mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 10:20:44 -05:00
41 lines
1.0 KiB
Go
41 lines
1.0 KiB
Go
package outbound
|
|
|
|
import (
|
|
"time"
|
|
|
|
"v2ray.com/core/common/net"
|
|
"v2ray.com/core/common/protocol"
|
|
"v2ray.com/core/common/serial"
|
|
"v2ray.com/core/proxy/vmess"
|
|
)
|
|
|
|
func (v *Handler) handleSwitchAccount(cmd *protocol.CommandSwitchAccount) {
|
|
account := &vmess.Account{
|
|
Id: cmd.ID.String(),
|
|
AlterId: uint32(cmd.AlterIds),
|
|
SecuritySettings: &protocol.SecurityConfig{
|
|
Type: protocol.SecurityType_LEGACY,
|
|
},
|
|
}
|
|
|
|
user := &protocol.User{
|
|
Email: "",
|
|
Level: cmd.Level,
|
|
Account: serial.ToTypedMessage(account),
|
|
}
|
|
dest := net.TCPDestination(cmd.Host, cmd.Port)
|
|
until := time.Now().Add(time.Duration(cmd.ValidMin) * time.Minute)
|
|
v.serverList.AddServer(protocol.NewServerSpec(dest, protocol.BeforeTime(until), user))
|
|
}
|
|
|
|
func (v *Handler) handleCommand(dest net.Destination, cmd protocol.ResponseCommand) {
|
|
switch typedCommand := cmd.(type) {
|
|
case *protocol.CommandSwitchAccount:
|
|
if typedCommand.Host == nil {
|
|
typedCommand.Host = dest.Address
|
|
}
|
|
v.handleSwitchAccount(typedCommand)
|
|
default:
|
|
}
|
|
}
|