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 andzn
Recipients David Hirschfeld, andzn, asvetlov, desbma, eryksun, paul.moore, pitrou, steve.dower, tim.golden, vstinner, zach.ware
Date 2019-06-06.13:09:34
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1559826575.02.0.817418125101.issue28708@roundup.psfhosted.org>
In-reply-to
Content
Awesome work Victor! Thanks! I'll give it a try. One thing I see mising though (if I understand well) is the allocation of three fd_sets (I posted a comment on github regarding that).

Those fd_sets are currently allocated on stack and the array they contain is determined currently by FD_SETSIZE.

We'll basically need a similar structure that we can allocate dynamically, and cast it to fd_set when passing it to the select call.

I can go ahead and try implement the feedback and test it together with the changes in Victor's PR.
History
Date User Action Args
2019-06-06 13:09:35andznsetrecipients: + andzn, paul.moore, pitrou, vstinner, tim.golden, asvetlov, zach.ware, desbma, eryksun, steve.dower, David Hirschfeld
2019-06-06 13:09:35andznsetmessageid: <1559826575.02.0.817418125101.issue28708@roundup.psfhosted.org>
2019-06-06 13:09:35andznlinkissue28708 messages
2019-06-06 13:09:34andzncreate