mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-14 20:53:18 +00:00
HTTP transport: Fix an issue when HTTP client start fail with 403 (#3910)
Co-authored-by: RPRX <63339210+RPRX@users.noreply.github.com>
This commit is contained in:
parent
8c180b9cfd
commit
6a70ae6408
|
@ -232,8 +232,12 @@ func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.Me
|
||||||
wrc := &WaitReadCloser{Wait: make(chan struct{})}
|
wrc := &WaitReadCloser{Wait: make(chan struct{})}
|
||||||
go func() {
|
go func() {
|
||||||
response, err := client.Do(request)
|
response, err := client.Do(request)
|
||||||
|
if err != nil || response.StatusCode != 200 {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errors.LogWarningInner(ctx, err, "failed to dial to ", dest)
|
errors.LogWarningInner(ctx, err, "failed to dial to ", dest)
|
||||||
|
} else {
|
||||||
|
errors.LogWarning(ctx, "unexpected status ", response.StatusCode)
|
||||||
|
}
|
||||||
wrc.Close()
|
wrc.Close()
|
||||||
{
|
{
|
||||||
// Abandon `client` if `client.Do(request)` failed
|
// Abandon `client` if `client.Do(request)` failed
|
||||||
|
@ -246,11 +250,6 @@ func Dial(ctx context.Context, dest net.Destination, streamSettings *internet.Me
|
||||||
}
|
}
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if response.StatusCode != 200 {
|
|
||||||
errors.LogWarning(ctx, "unexpected status", response.StatusCode)
|
|
||||||
wrc.Close()
|
|
||||||
return
|
|
||||||
}
|
|
||||||
wrc.Set(response.Body)
|
wrc.Set(response.Body)
|
||||||
}()
|
}()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue