mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-09 18:43:12 +00:00
fix compatibility issues with go 1.21
This commit is contained in:
parent
404af13b56
commit
c1a7602412
|
@ -263,7 +263,7 @@ func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.Me
|
||||||
} else {
|
} else {
|
||||||
var err error
|
var err error
|
||||||
var uploadConn any
|
var uploadConn any
|
||||||
for _ = range 5 {
|
for i := 0; i < 5; i++ {
|
||||||
uploadConn = httpClient.uploadRawPool.Get()
|
uploadConn = httpClient.uploadRawPool.Get()
|
||||||
if uploadConn == nil {
|
if uploadConn == nil {
|
||||||
uploadConn, err = httpClient.dialUploadConn(ctx)
|
uploadConn, err = httpClient.dialUploadConn(ctx)
|
||||||
|
|
Loading…
Reference in a new issue