1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-08-20 03:14:16 -04:00
v2fly/proxy/http/config_json.go

29 lines
588 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-08-20 14:55:45 -04:00
"v2ray.com/core/proxy/registry"
)
2016-05-29 10:46:31 -04:00
// UnmarshalJSON implements json.Unmarshaler
2016-08-25 15:55:49 -04:00
func (this *ServerConfig) UnmarshalJSON(data []byte) error {
2016-01-26 05:28:09 -05:00
type JsonConfig struct {
2016-08-25 15:55:49 -04:00
Timeout uint32 `json:"timeout"`
2016-01-26 05:28:09 -05:00
}
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
}
2016-07-10 09:34:14 -04:00
this.Timeout = jsonConfig.Timeout
2016-01-26 05:28:09 -05:00
return nil
}
func init() {
2016-08-25 15:55:49 -04:00
registry.RegisterInboundConfig("http", func() interface{} { return new(ServerConfig) })
}