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.

Author giampaolo.rodola
Recipients asvetlov, cheryl.sabella, giampaolo.rodola, jaraco, josiah.carlson, loewis, neologix, pitrou
Date 2019-02-07.19:15:02
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1549566902.79.0.677687282333.issue35934@roundup.psfhosted.org>
In-reply-to
Content
The main point of this patch is to automatize all the necessary tasks which are usually involved when creating a server socket, amongst which:

* determining the right family based on address, similarly to socket.create_connection()
* whether to use SO_REUSEADDR depending on the platform
* set AI_PASSIVE flag for getaddrinfo()
* set a more optimal default backlog

This is somewhat related to issue17561 which I prefer to leave pending for now (need to think about it more carefully). issue17561 is complementary to this one so it appears it can be integrated later (or never) without altering the base functionality implemented in here.
History
Date User Action Args
2019-02-07 19:15:06giampaolo.rodolasetrecipients: + giampaolo.rodola, loewis, jaraco, pitrou, josiah.carlson, asvetlov, neologix, cheryl.sabella
2019-02-07 19:15:02giampaolo.rodolasetmessageid: <1549566902.79.0.677687282333.issue35934@roundup.psfhosted.org>
2019-02-07 19:15:02giampaolo.rodolalinkissue35934 messages
2019-02-07 19:15:02giampaolo.rodolacreate