IPv6 support #539
Replies: 3 comments
-
Would also be really great if IPv6 worked in such a case because not only can I make it available to all of the IPv6 world on the clearnet but also to Yggdrasil users |
Beta Was this translation helpful? Give feedback.
-
I also did look at the source code, and found myself at It seems that |
Beta Was this translation helpful? Give feedback.
-
One other thing I recall from testing last night, this also is affected by outbound code, i.e. code which I think that may be possible with: self.socket = socket.socket(socket.AF_INET|socket.AF_INET6, socket.SOCK_STREAM) This solves connecting to raw IPv6 addresses at least. But, I do recall having problems with a domain name that had AAAA record but your code would not play nice with it. (I am not a Python dev and don't have a proper test environment rn) |
Beta Was this translation helpful? Give feedback.
-
Heya!
Firstly, great work. You have given this here 25 year old a lot of fun things to play around with this year-end and I am only getting started.
I, being an IPv6 MAXI, noticed problems trying to get the
TCPServerInterface
to bind to[::]
or::
. Getting address family errors, which gives me the idea that perhaps someAF_INET
hardcoding is present? Or am I doing it wrong?Beta Was this translation helpful? Give feedback.
All reactions