Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'xray/process.go')
-rw-r--r--xray/process.go14
1 files changed, 13 insertions, 1 deletions
diff --git a/xray/process.go b/xray/process.go
index 9289362f..093cf69d 100644
--- a/xray/process.go
+++ b/xray/process.go
@@ -41,12 +41,24 @@ func GetIPLimitLogPath() string {
return config.GetLogFolder() + "/3xipl.log"
}
+func GetIPLimitPrevLogPath() string {
+ return config.GetLogFolder() + "/3xipl.prev.log"
+}
+
func GetIPLimitBannedLogPath() string {
return config.GetLogFolder() + "/3xipl-banned.log"
}
+func GetIPLimitBannedPrevLogPath() string {
+ return config.GetLogFolder() + "/3xipl-banned.prev.log"
+}
+
func GetAccessPersistentLogPath() string {
- return config.GetLogFolder() + "/3xipl-access-persistent.log"
+ return config.GetLogFolder() + "/3xipl-ap.log"
+}
+
+func GetAccessPersistentPrevLogPath() string {
+ return config.GetLogFolder() + "/3xipl-ap.prev.log"
}
func GetAccessLogPath() string {