vnext removed

This commit is contained in:
mhsanaei
2025-09-16 13:41:05 +02:00
parent 76afff2a6f
commit 1de7accd7c
6 changed files with 63 additions and 97 deletions

View File

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