mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-06 07:03:02 +00:00
ba57ccdd45
* add SourceIpBlock to API * improve inboundTag
29 lines
576 B
Go
29 lines
576 B
Go
package api
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/main/commands/base"
|
|
)
|
|
|
|
// CmdAPI calls an API in an Xray process
|
|
var CmdAPI = &base.Command{
|
|
UsageLine: "{{.Exec}} api",
|
|
Short: "Call an API in an Xray process",
|
|
Long: `{{.Exec}} {{.LongName}} provides tools to manipulate Xray via its API.
|
|
`,
|
|
Commands: []*base.Command{
|
|
cmdRestartLogger,
|
|
cmdGetStats,
|
|
cmdQueryStats,
|
|
cmdSysStats,
|
|
cmdBalancerInfo,
|
|
cmdBalancerOverride,
|
|
cmdAddInbounds,
|
|
cmdAddOutbounds,
|
|
cmdRemoveInbounds,
|
|
cmdRemoveOutbounds,
|
|
cmdAddRules,
|
|
cmdRemoveRules,
|
|
cmdSourceIpBlock,
|
|
},
|
|
}
|