We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
This relay somehow resulted in both ::84.209.139.0 and 84.209.139.0
https://metrics.torproject.org/rs.html#details/AC717A01B8E3C00E7617EF65117A4E99C02DC7A0
This script shows me the only way I can get the '::' prefix is by supplying it myself.
#!/usr/bin/env python3 import socket def f(host: str): for ret in socket.getaddrinfo(host, None, proto=socket.IPPROTO_TCP): print(ret) if __name__ == '__main__': f('cm-84.209.139.0.getinternet.no') print('---') f('84.209.139.0') print('---') f('::84.209.139.0')
$ python3 a.py (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_STREAM: 1>, 6, '', ('84.209.139.0', 0)) --- (<AddressFamily.AF_INET: 2>, <SocketKind.SOCK_STREAM: 1>, 6, '', ('84.209.139.0', 0)) --- (<AddressFamily.AF_INET6: 10>, <SocketKind.SOCK_STREAM: 1>, 6, '', ('::84.209.139.0', 0, 0, 0))
The text was updated successfully, but these errors were encountered:
I did a clean full scan of the real Tor network and this didn't happen >:(
Sorry, something went wrong.
No branches or pull requests
This relay somehow resulted in both ::84.209.139.0 and 84.209.139.0
https://metrics.torproject.org/rs.html#details/AC717A01B8E3C00E7617EF65117A4E99C02DC7A0
This script shows me the only way I can get the '::' prefix is by supplying it myself.
The text was updated successfully, but these errors were encountered: