This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Make multiprocessing.connection.Client support ipv6
Type: behavior Stage:
Components: Versions: Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: davin, mhupfer, pitrou
Priority: normal Keywords:

Created on 2022-02-20 17:36 by mhupfer, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg413599 - (view) Author: Michael Hupfer (mhupfer) Date: 2022-02-20 17:36
Hi there,

connecting a multiprocessing.connection.Client to an ipv6 address is not possible, since the address family is not passed into the constructor of class SocketClient. The constructor determines the family by calling address_type(address), which never returns AF_INET6.

The class SocketListener already implemented ipv6 support.

kind regards
History
Date User Action Args
2022-04-11 14:59:56adminsetgithub: 90966
2022-02-25 20:29:58terry.reedysetnosy: + pitrou, davin

title: multiprocessing.connection.Client doesn't support ipv6 -> Make multiprocessing.connection.Client support ipv6
2022-02-20 17:36:46mhupfercreate