You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would be happy if the program listens to "any" ports not just on the IPv4-sockets.
I expect something like this:
:::48109
instead of
0.0.0.0:48109
Simply replacing the host='0.0.0.0' by host='::' may break other installations, because aiohttp has set the ipv6-only flag somewhere. So the flag should be set to dualstack or it is necessary to open two separate sockets. Since the dualstack socket is not supported by all operating system so the two socket option may be the best solution.
The text was updated successfully, but these errors were encountered:
I found this site too. But I am not very familiar with python. For me it would also be ok, with IPv6-only. But in general I expect that a server application is running in dual stack mode, or it is easy configurable by command line switches/ configuration file / prominent place within the code.
I would be happy if the program listens to "any" ports not just on the IPv4-sockets.
I expect something like this:
:::48109
instead of
0.0.0.0:48109
Simply replacing the host='0.0.0.0' by host='::' may break other installations, because aiohttp has set the ipv6-only flag somewhere. So the flag should be set to dualstack or it is necessary to open two separate sockets. Since the dualstack socket is not supported by all operating system so the two socket option may be the best solution.
The text was updated successfully, but these errors were encountered: