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 '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
-}