mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 02:38:10 -05:00
36 lines
979 B
Go
36 lines
979 B
Go
// +build json
|
|
|
|
package outbound
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
|
"github.com/v2ray/v2ray-core/proxy/vmess"
|
|
)
|
|
|
|
func (this *Receiver) UnmarshalJSON(data []byte) error {
|
|
type RawConfigTarget struct {
|
|
Address *v2net.AddressJson `json:"address"`
|
|
Port v2net.Port `json:"port"`
|
|
Users []*vmess.User `json:"users"`
|
|
}
|
|
var rawConfig RawConfigTarget
|
|
if err := json.Unmarshal(data, &rawConfig); err != nil {
|
|
return err
|
|
}
|
|
if len(rawConfig.Users) == 0 {
|
|
log.Error("VMess: 0 user configured for VMess outbound.")
|
|
return internal.ErrorBadConfiguration
|
|
}
|
|
this.Accounts = rawConfig.Users
|
|
if rawConfig.Address == nil {
|
|
log.Error("VMess: Address is not set in VMess outbound config.")
|
|
return internal.ErrorBadConfiguration
|
|
}
|
|
this.Destination = v2net.TCPDestination(rawConfig.Address.Address, rawConfig.Port)
|
|
return nil
|
|
}
|