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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
first of all, thanks for this great lib !
Quick question :
WebsocketServer(host="0.0.0.0", port=12345)
will that allow a connection using IPV6 ?
if not, is there a specific config to allow it ?
The text was updated successfully, but these errors were encountered:
you need to modify the variable address_family of the TCPServer Class in the socketserver.py file of your python lib like this:
address_family = socket.AF_INET6
Sorry, something went wrong.
No branches or pull requests
Hi,
first of all, thanks for this great lib !
Quick question :
will that allow a connection using IPV6 ?
if not, is there a specific config to allow it ?
The text was updated successfully, but these errors were encountered: