You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package json
|
|
|
|
|
|
|
|
//go:generate errorgen
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io"
|
|
|
|
|
|
|
|
"v2ray.com/core"
|
|
|
|
"v2ray.com/core/common"
|
|
|
|
"v2ray.com/core/common/buf"
|
|
|
|
"v2ray.com/core/common/platform/ctlcmd"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
common.Must(core.RegisterConfigLoader(&core.ConfigFormat{
|
|
|
|
Name: "JSON",
|
|
|
|
Extension: []string{"json"},
|
|
|
|
Loader: func(input io.Reader) (*core.Config, error) {
|
|
|
|
jsonContent, err := ctlcmd.Run([]string{"config"}, input)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
|
|
|
|
}
|
|
|
|
return core.LoadConfig("protobuf", "", &buf.MultiBufferContainer{
|
|
|
|
MultiBuffer: jsonContent,
|
|
|
|
})
|
|
|
|
},
|
|
|
|
}))
|
|
|
|
}
|