|
|
@@ -4,11 +4,10 @@ package json
|
|
|
|
|
|
import (
|
|
|
"io"
|
|
|
-
|
|
|
+ "os"
|
|
|
"v2ray.com/core"
|
|
|
"v2ray.com/core/common"
|
|
|
"v2ray.com/core/common/cmdarg"
|
|
|
- "v2ray.com/core/infra/conf/serial"
|
|
|
"v2ray.com/core/main/confloader"
|
|
|
)
|
|
|
|
|
|
@@ -19,15 +18,19 @@ func init() {
|
|
|
Loader: func(input interface{}) (*core.Config, error) {
|
|
|
switch v := input.(type) {
|
|
|
case cmdarg.Arg:
|
|
|
- r, err := confloader.LoadExtConfig(v)
|
|
|
+ r, err := confloader.LoadExtConfig(v, os.Stdin)
|
|
|
if err != nil {
|
|
|
return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
|
|
|
}
|
|
|
return core.LoadConfig("protobuf", "", r)
|
|
|
case io.Reader:
|
|
|
- return serial.LoadJSONConfig(v)
|
|
|
+ r, err := confloader.LoadExtConfig([]string{"stdin:"}, os.Stdin)
|
|
|
+ if err != nil {
|
|
|
+ return nil, newError("failed to execute v2ctl to convert config file.").Base(err).AtWarning()
|
|
|
+ }
|
|
|
+ return core.LoadConfig("protobuf", "", r)
|
|
|
default:
|
|
|
- return nil, newError("unknow type")
|
|
|
+ return nil, newError("unknown type")
|
|
|
}
|
|
|
},
|
|
|
}))
|