mirror of
https://github.com/XTLS/Xray-core.git
synced 2025-04-03 22:03:36 +03:00
rename
This commit is contained in:
parent
c6beeabf04
commit
17f2dbcdb7
4 changed files with 11 additions and 11 deletions
|
@ -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 {
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue