[Lldb-commits] [PATCH] D31824: Update DebugServer to support IPv6 over TCP

2017-04-18 Thread Phabricator via Phabricator via lldb-commits
This revision was automatically updated to reflect the committed changes. Closed by commit rL300580: Update DebugServer to support IPv6 over TCP (authored by cbieneman). Changed prior to commit: https://reviews.llvm.org/D31824?vs=94555&id=95615#toc Repository: rL LLVM https://reviews.llvm.o

[Lldb-commits] [PATCH] D31824: Update DebugServer to support IPv6 over TCP

2017-04-12 Thread Greg Clayton via Phabricator via lldb-commits
clayborg added a comment. when users edit some config file they can have "localhost" map to some other port... Can't remember the unix file for this. https://reviews.llvm.org/D31824 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://l

[Lldb-commits] [PATCH] D31824: Update DebugServer to support IPv6 over TCP

2017-04-12 Thread Greg Clayton via Phabricator via lldb-commits
clayborg accepted this revision. clayborg added a comment. This revision is now accepted and ready to land. Looks fine as long as all of the old modes work. : - "*:1234" that will accept a connection from any host on port 1234 - "foo.bar.com:1234" only accept connections from "foo.bar.com" on por

[Lldb-commits] [PATCH] D31824: Update DebugServer to support IPv6 over TCP

2017-04-12 Thread Chris Bieneman via Phabricator via lldb-commits
beanz added a reviewer: clayborg. beanz added a comment. Adding Greg to the reviewers. https://reviews.llvm.org/D31824 ___ lldb-commits mailing list lldb-commits@lists.llvm.org http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

[Lldb-commits] [PATCH] D31824: Update DebugServer to support IPv6 over TCP

2017-04-10 Thread Chris Bieneman via Phabricator via lldb-commits
beanz created this revision. Herald added a subscriber: mgorny. This patch adds IPv6 support to debugserver. It follows a similar pattern to the changes proposed for LLDB/Host except that the listen implementation is only with kqueue(2) because debugserver is only supported on Darwin. https://