mirror of https://github.com/XTLS/Xray-core
23 lines
522 B
Go
23 lines
522 B
Go
package conf
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/app/version"
|
|
"github.com/xtls/xray-core/core"
|
|
"strconv"
|
|
)
|
|
|
|
type VersionConfig struct {
|
|
MinVersion string `json:"min"`
|
|
MaxVersion string `json:"max"`
|
|
}
|
|
|
|
func (c *VersionConfig) Build() (*version.Config, error) {
|
|
coreVersion := strconv.Itoa(int(core.Version_x)) + "." + strconv.Itoa(int(core.Version_y)) + "." + strconv.Itoa(int(core.Version_z))
|
|
|
|
return &version.Config{
|
|
CoreVersion: coreVersion,
|
|
MinVersion: c.MinVersion,
|
|
MaxVersion: c.MaxVersion,
|
|
}, nil
|
|
}
|