1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-11 22:44:22 -04:00
v2fly/proxy/http/config_json.go

27 lines
520 B
Go
Raw Normal View History

// +build json
package http
import (
2016-01-26 05:28:09 -05:00
"encoding/json"
2016-06-11 16:52:37 -04:00
"errors"
2016-01-26 05:28:09 -05:00
2016-06-10 16:26:39 -04:00
"github.com/v2ray/v2ray-core/proxy/internal"
)
2016-05-29 10:46:31 -04:00
// UnmarshalJSON implements json.Unmarshaler
2016-01-26 05:28:09 -05:00
func (this *Config) UnmarshalJSON(data []byte) error {
type JsonConfig struct {
}
jsonConfig := new(JsonConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-06-11 16:52:37 -04:00
return errors.New("HTTP: Failed to parse config: " + err.Error())
2016-01-26 05:28:09 -05:00
}
return nil
}
func init() {
2016-06-10 16:26:39 -04:00
internal.RegisterInboundConfig("http", func() interface{} { return new(Config) })
}