mirror of https://github.com/v2ray/v2ray-core
32 lines
670 B
Go
32 lines
670 B
Go
// +build json
|
|
|
|
package outbound
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
|
)
|
|
|
|
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() {
|
|
internal.RegisterOutboundConfig("vmess", func() interface{} { return new(Config) })
|
|
}
|