| 1234567891011121314151617181920212223242526272829303132 | // +build jsonpackage dokodemoimport (	"encoding/json"	v2net "github.com/v2ray/v2ray-core/common/net"	"github.com/v2ray/v2ray-core/proxy/internal")func (this *Config) UnmarshalJSON(data []byte) error {	type DokodemoConfig struct {		Host         *v2net.AddressJson `json:"address"`		PortValue    v2net.Port         `json:"port"`		NetworkList  *v2net.NetworkList `json:"network"`		TimeoutValue int                `json:"timeout"`	}	rawConfig := new(DokodemoConfig)	if err := json.Unmarshal(data, rawConfig); err != nil {		return err	}	this.Address = rawConfig.Host.Address	this.Port = rawConfig.PortValue	this.Network = rawConfig.NetworkList	this.Timeout = rawConfig.TimeoutValue	return nil}func init() {	internal.RegisterInboundConfig("dokodemo-door", func() interface{} { return new(Config) })}
 |