mirror of
https://github.com/apernet/hysteria.git
synced 2025-04-04 21:17:47 +03:00
Tweaks to the CLI to ensure consistent behavior with previous versions
This commit is contained in:
parent
3f5bd76480
commit
060948188e
1 changed files with 47 additions and 49 deletions
96
cmd/main.go
96
cmd/main.go
|
@ -22,66 +22,24 @@ var (
|
|||
|
||||
func main() {
|
||||
app := &cli.App{
|
||||
Name: "hysteria",
|
||||
Usage: "A TCP/UDP relay & SOCKS5/HTTP proxy tool",
|
||||
Name: "Hysteria",
|
||||
Usage: "a TCP/UDP relay & SOCKS5/HTTP proxy tool optimized for poor network environments",
|
||||
Version: fmt.Sprintf("%s %s %s", appVersion, appDate, appCommit),
|
||||
Authors: []*cli.Author{{Name: "HyNetwork <https://github.com/HyNetwork>"}},
|
||||
EnableBashCompletion: true,
|
||||
Action: func(c *cli.Context) error {
|
||||
return cli.ShowAppHelp(c)
|
||||
},
|
||||
Action: clientAction,
|
||||
Flags: commonFlags(),
|
||||
Before: initApp,
|
||||
Commands: []*cli.Command{
|
||||
{
|
||||
Name: "server",
|
||||
Usage: "Run as server mode",
|
||||
Before: initApp,
|
||||
Flags: commonFlags(),
|
||||
Action: func(c *cli.Context) error {
|
||||
cbs, err := ioutil.ReadFile(c.String("config"))
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to read configuration")
|
||||
}
|
||||
|
||||
// server mode
|
||||
sc, err := parseServerConfig(cbs)
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to parse server configuration")
|
||||
}
|
||||
server(sc)
|
||||
return nil
|
||||
},
|
||||
Action: serverAction,
|
||||
},
|
||||
{
|
||||
Name: "client",
|
||||
Usage: "Run as client mode",
|
||||
Before: initApp,
|
||||
Flags: commonFlags(),
|
||||
Action: func(c *cli.Context) error {
|
||||
cbs, err := ioutil.ReadFile(c.String("config"))
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to read configuration")
|
||||
}
|
||||
|
||||
// client mode
|
||||
cc, err := parseClientConfig(cbs)
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to parse client configuration")
|
||||
}
|
||||
client(cc)
|
||||
return nil
|
||||
},
|
||||
Action: clientAction,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -93,6 +51,46 @@ func main() {
|
|||
|
||||
}
|
||||
|
||||
func clientAction(c *cli.Context) error {
|
||||
cbs, err := ioutil.ReadFile(c.String("config"))
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to read configuration")
|
||||
}
|
||||
// client mode
|
||||
cc, err := parseClientConfig(cbs)
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to parse client configuration")
|
||||
}
|
||||
client(cc)
|
||||
return nil
|
||||
}
|
||||
|
||||
func serverAction(c *cli.Context) error {
|
||||
cbs, err := ioutil.ReadFile(c.String("config"))
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to read configuration")
|
||||
}
|
||||
// server mode
|
||||
sc, err := parseServerConfig(cbs)
|
||||
if err != nil {
|
||||
logrus.WithFields(logrus.Fields{
|
||||
"file": c.String("config"),
|
||||
"error": err,
|
||||
}).Fatal("Failed to parse server configuration")
|
||||
}
|
||||
server(sc)
|
||||
return nil
|
||||
}
|
||||
|
||||
func parseServerConfig(cb []byte) (*serverConfig, error) {
|
||||
var c serverConfig
|
||||
err := json5.Unmarshal(cb, &c)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue