mirror of
https://github.com/nitezs/sub2clash.git
synced 2025-04-04 12:43:44 +08:00
Compare commits
No commits in common. "db004339311100b925b7af50b9ed85ef103755f5" and "d4d7010d8f78d589fed2fd7df41b8d5dc8fa7ed6" have entirely different histories.
db00433931
...
d4d7010d8f
@ -2,7 +2,6 @@ package common
|
||||
|
||||
import (
|
||||
"errors"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"time"
|
||||
|
||||
@ -29,12 +28,10 @@ func Get(url string, options ...GetOption) (resp *http.Response, err error) {
|
||||
for _, option := range options {
|
||||
option(&getConfig)
|
||||
}
|
||||
var req *http.Request
|
||||
var get *http.Response
|
||||
for haveTried < retryTimes {
|
||||
client := &http.Client{}
|
||||
//client.Timeout = time.Second * 10
|
||||
req, err = http.NewRequest("GET", url, nil)
|
||||
req, err := http.NewRequest("GET", url, nil)
|
||||
if err != nil {
|
||||
haveTried++
|
||||
time.Sleep(retryDelay)
|
||||
@ -43,12 +40,13 @@ func Get(url string, options ...GetOption) (resp *http.Response, err error) {
|
||||
if getConfig.userAgent != "" {
|
||||
req.Header.Set("User-Agent", getConfig.userAgent)
|
||||
}
|
||||
get, err = client.Do(req)
|
||||
get, err := client.Do(req)
|
||||
if err != nil {
|
||||
haveTried++
|
||||
time.Sleep(retryDelay)
|
||||
continue
|
||||
} else {
|
||||
|
||||
if get != nil && get.ContentLength > config.Default.RequestMaxFileSize {
|
||||
return nil, errors.New("文件过大")
|
||||
}
|
||||
@ -56,5 +54,5 @@ func Get(url string, options ...GetOption) (resp *http.Response, err error) {
|
||||
}
|
||||
|
||||
}
|
||||
return nil, fmt.Errorf("请求失败:%v", err)
|
||||
return nil, err
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user