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
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
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
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
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://