mirror of
https://github.com/TeaOSLab/EdgeNode.git
synced 2025-11-07 18:50:27 +08:00
支持info指令查询PID、版本号等信息
This commit is contained in:
@@ -496,6 +496,16 @@ func (this *Node) listenSock() error {
|
|||||||
"pid": os.Getpid(),
|
"pid": os.Getpid(),
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
|
case "info":
|
||||||
|
exePath, _ := os.Executable()
|
||||||
|
_ = cmd.Reply(&gosock.Command{
|
||||||
|
Code: "info",
|
||||||
|
Params: map[string]interface{}{
|
||||||
|
"pid": os.Getpid(),
|
||||||
|
"version": teaconst.Version,
|
||||||
|
"path": exePath,
|
||||||
|
},
|
||||||
|
})
|
||||||
case "stop":
|
case "stop":
|
||||||
_ = cmd.ReplyOk()
|
_ = cmd.ReplyOk()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user