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:
authormhsanaei <ho3ein.sanaei@gmail.com>2025-09-16 14:41:05 +0300
committermhsanaei <ho3ein.sanaei@gmail.com>2025-09-16 14:41:05 +0300
commit1de7accd7cfea4aa834fbcf80ff05e0f072971b4 (patch)
treecbf359d4737c2dd8ad06d05f60ad295597cc7be4 /sub/subService.go
parent76afff2a6f5bcc2fad72955f15a216d0eebacacd (diff)
vnext removed
Diffstat (limited to 'sub/subService.go')
-rw-r--r--sub/subService.go8
1 files changed, 0 insertions, 8 deletions
diff --git a/sub/subService.go b/sub/subService.go
index ffad23a2..9f2d93f5 100644
--- a/sub/subService.go
+++ b/sub/subService.go
@@ -5,7 +5,6 @@ import (
"fmt"
"net"
"net/url"
- "strconv"
"strings"
"time"
@@ -1139,10 +1138,3 @@ func getHostFromXFH(s string) (string, error) {
}
return s, nil
}
-
-func parseInt64(s string) (int64, error) {
- // handle potential quotes
- s = strings.Trim(s, "\"'")
- n, err := strconv.ParseInt(s, 10, 64)
- return n, err
-}