| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | // +build jsonpackage httpimport (	"crypto/tls"	"encoding/json"	"github.com/v2ray/v2ray-core/proxy/internal")// UnmarshalJSON implements json.Unmarshalerfunc (this *CertificateConfig) UnmarshalJSON(data []byte) error {	type JsonConfig struct {		Domain   string `json:"domain"`		CertFile string `json:"cert"`		KeyFile  string `json:"key"`	}	jsonConfig := new(JsonConfig)	if err := json.Unmarshal(data, jsonConfig); err != nil {		return err	}	cert, err := tls.LoadX509KeyPair(jsonConfig.CertFile, jsonConfig.KeyFile)	if err != nil {		return err	}	this.Domain = jsonConfig.Domain	this.Certificate = cert	return nil}// UnmarshalJSON implements json.Unmarshalerfunc (this *TLSConfig) UnmarshalJSON(data []byte) error {	type JsonConfig struct {		Enabled bool                 `json:"enable"`		Certs   []*CertificateConfig `json:"certs"`	}	jsonConfig := new(JsonConfig)	if err := json.Unmarshal(data, jsonConfig); err != nil {		return err	}	this.Enabled = jsonConfig.Enabled	this.Certs = jsonConfig.Certs	return nil}// UnmarshalJSON implements json.Unmarshalerfunc (this *Config) UnmarshalJSON(data []byte) error {	type JsonConfig struct {		Tls *TLSConfig `json:"tls"`	}	jsonConfig := new(JsonConfig)	if err := json.Unmarshal(data, jsonConfig); err != nil {		return err	}	this.TLSConfig = jsonConfig.Tls	return nil}func init() {	internal.RegisterInboundConfig("http", func() interface{} { return new(Config) })}
 |