From 17f2dbcdb772218ff833082578f739d30646553e Mon Sep 17 00:00:00 2001 From: patterniha Date: Mon, 24 Mar 2025 14:25:29 +0330 Subject: [PATCH] rename --- common/platform/filesystem/file.go | 2 +- common/platform/others.go | 4 ++-- common/platform/platform.go | 12 ++++++------ common/platform/windows.go | 4 ++-- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/common/platform/filesystem/file.go b/common/platform/filesystem/file.go index 958df8e6..75943953 100644 --- a/common/platform/filesystem/file.go +++ b/common/platform/filesystem/file.go @@ -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 { diff --git a/common/platform/others.go b/common/platform/others.go index 3c4c4c9e..6b7738a7 100644 --- a/common/platform/others.go +++ b/common/platform/others.go @@ -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) } diff --git a/common/platform/platform.go b/common/platform/platform.go index ce887b09..b865dc0d 100644 --- a/common/platform/platform.go +++ b/common/platform/platform.go @@ -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" diff --git a/common/platform/windows.go b/common/platform/windows.go index 3768d2a5..e251113d 100644 --- a/common/platform/windows.go +++ b/common/platform/windows.go @@ -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) }