mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 10:47:48 -05:00
40 lines
890 B
Go
40 lines
890 B
Go
// +build json
|
|
|
|
package outbound
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
|
proxyconfig "github.com/v2ray/v2ray-core/proxy/internal/config"
|
|
)
|
|
|
|
func (this *Config) UnmarshalJSON(data []byte) error {
|
|
type RawOutbound struct {
|
|
Receivers []*Receiver `json:"vnext"`
|
|
}
|
|
rawOutbound := &RawOutbound{}
|
|
err := json.Unmarshal(data, rawOutbound)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
if len(rawOutbound.Receivers) == 0 {
|
|
log.Error("VMess: 0 VMess receiver configured.")
|
|
return internal.ErrorBadConfiguration
|
|
}
|
|
this.Receivers = rawOutbound.Receivers
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proxyconfig.RegisterOutboundConnectionConfig("vmess",
|
|
func(data []byte) (interface{}, error) {
|
|
rawConfig := new(Config)
|
|
if err := json.Unmarshal(data, rawConfig); err != nil {
|
|
return nil, err
|
|
}
|
|
return rawConfig, nil
|
|
})
|
|
}
|