| 12345678910111213141516171819202122232425262728293031 | // +build jsonpackage outboundimport (	"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) })}
 |