Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var CmdRun = &base.Command{ CustomFlags: true, UsageLine: "{{.Exec}} run [-c config.json] [-d dir]", Short: "run V2Ray with config", Long: ` Run V2Ray with config. {{.Exec}} will also use the config directory specified by environment variable "v2ray.location.confdir". If no config found, it tries to load config from one of below: 1. The default "config.json" in the current directory 2. The config file from ENV "v2ray.location.config" 3. The stdin if all failed above Arguments: -c, -config <file> Config file for V2Ray. Multiple assign is accepted. -d, -confdir <dir> A directory with config files. Multiple assign is accepted. -r Load confdir recursively. -format <format> Format of config input. (default "auto") Examples: {{.Exec}} {{.LongName}} -c config.json {{.Exec}} {{.LongName}} -d path/to/dir Use "{{.Exec}} help format-loader" for more information about format. `, Run: executeRun, }
CmdRun runs V2Ray with config
View Source
var CmdTest = &base.Command{ CustomFlags: true, UsageLine: "{{.Exec}} test [-format=json] [-c config.json] [-d dir]", Short: "test config files", Long: ` Test config files, without launching V2Ray server. {{.Exec}} will also use the config directory specified by environment variable "v2ray.location.confdir". If no config found, it tries to load config from one of below: 1. The default "config.json" in the current directory 2. The config file from ENV "v2ray.location.config" 3. The stdin if all failed above Arguments: -c, -config <file> Config file for V2Ray. Multiple assign is accepted. -d, -confdir <dir> A directory with config files. Multiple assign is accepted. -r Load confdir recursively. -format <format> Format of config input. (default "auto") Examples: {{.Exec}} {{.LongName}} -c config.json {{.Exec}} {{.LongName}} -d path/to/dir Use "{{.Exec}} help format-loader" for more information about format. `, Run: executeTest, }
CmdTest tests config files
View Source
var CmdVersion = &base.Command{
UsageLine: "{{.Exec}} version",
Short: "print V2Ray version",
Long: `Prints the build information for V2Ray.
`,
Run: executeVersion,
}
CmdVersion prints V2Ray Versions
Functions ¶
This section is empty.
Types ¶
This section is empty.
Directories ¶
Path | Synopsis |
---|---|
Package base defines shared basic pieces of the commands, in particular logging and the Command structure.
|
Package base defines shared basic pieces of the commands, in particular logging and the Command structure. |
Click to show internal directories.
Click to hide internal directories.