chore: return context error

This commit is contained in:
Skyxim 2022-11-19 10:50:13 +08:00
parent 8fcfecbed1
commit 1d3cc36eef

View File

@ -331,6 +331,10 @@ func concurrentDialContext(ctx context.Context, network string, ips []netip.Addr
return nil, fallback.error
}
if ctx.Err() != nil {
return nil, ctx.Err()
}
return nil, fmt.Errorf("all ips %v tcp shake hands failed", ips)
}