This commit is contained in:
patterniha 2025-03-24 14:25:29 +03:30
parent c6beeabf04
commit 17f2dbcdb7
4 changed files with 11 additions and 11 deletions

View file

@ -33,7 +33,7 @@ func ReadCertificate(file string) ([]byte, error) {
if filepath.IsAbs(file) {
return ReadFile(file)
}
return ReadFile(platform.GetCertificateLocation(file))
return ReadFile(platform.GetCertLocation(file))
}
func CopyFile(dst string, src string) error {

View file

@ -43,7 +43,7 @@ func GetAssetLocation(file string) string {
return defPath
}
func GetCertificateLocation(file string) string {
certificatePath := NewEnvFlag(CertificateLocation).GetValue(getExecutableDir)
func GetCertLocation(file string) string {
certificatePath := NewEnvFlag(CertLocation).GetValue(getExecutableDir)
return filepath.Join(certificatePath, file)
}

View file

@ -8,12 +8,12 @@ import (
)
const (
PluginLocation = "xray.location.plugin"
ConfigLocation = "xray.location.config"
ConfdirLocation = "xray.location.confdir"
ToolLocation = "xray.location.tool"
AssetLocation = "xray.location.asset"
CertificateLocation = "xray.location.certificate"
PluginLocation = "xray.location.plugin"
ConfigLocation = "xray.location.config"
ConfdirLocation = "xray.location.confdir"
ToolLocation = "xray.location.tool"
AssetLocation = "xray.location.asset"
CertLocation = "xray.location.cert"
UseReadV = "xray.buf.readv"
UseFreedomSplice = "xray.buf.splice"

View file

@ -25,7 +25,7 @@ func GetAssetLocation(file string) string {
return filepath.Join(assetPath, file)
}
func GetCertificateLocation(file string) string {
certificatePath := NewEnvFlag(CertificateLocation).GetValue(getExecutableDir)
func GetCertLocation(file string) string {
certificatePath := NewEnvFlag(CertLocation).GetValue(getExecutableDir)
return filepath.Join(certificatePath, file)
}