[Lldb-commits] [PATCH] D126702: [lldb] Fix TCPSocket::Connect when getaddrinfo returns multiple addrs

2022-06-14 Thread Pavel Labath via Phabricator via lldb-commits
labath added a comment. Committed now, thanks for the patch. I'm not sure if there will be another 14.x release, but you can file a bug to track this, if there happens to be one. Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D126702/new/

[Lldb-commits] [PATCH] D126702: [lldb] Fix TCPSocket::Connect when getaddrinfo returns multiple addrs

2022-06-14 Thread Pavel Labath via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rG926a7ecdc8b2: [lldb] Fix TCPSocket::Connect when getaddrinfo returns multiple addrs (authored by labath). Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION

[Lldb-commits] [PATCH] D126702: [lldb] Fix TCPSocket::Connect when getaddrinfo returns multiple addrs

2022-06-08 Thread Daniele Di Proietto via Phabricator via lldb-commits
ddiproietto added a comment. I do not have commit access, can someone commit this for me, please? Also, would it be possible for this to be cherry picked somewhere (apologies, I'm not familiar with the LLVM branching model), for an eventual 14.0.1 release? Thanks! Repository: rG LLVM

[Lldb-commits] [PATCH] D126702: [lldb] Fix TCPSocket::Connect when getaddrinfo returns multiple addrs

2022-05-31 Thread Daniele Di Proietto via Phabricator via lldb-commits
ddiproietto created this revision. Herald added a project: All. ddiproietto requested review of this revision. Herald added a project: LLDB. Herald added a subscriber: lldb-commits. TCPSocket::Connect() calls SocketAddress::GetAddressInfo() and tries to connect any of them (in a for loop). This