[issue24906] asyncore asynchat hanging on ssl

2021-05-28 Thread Irit Katriel
Irit Katriel added the comment: asyncore and asynchat are deprecated since 3.6, so this is not going to be fixed. Use asyncio instead. -- nosy: +iritkatriel resolution: -> wont fix stage: -> resolved status: open -> closed ___ Python tracker

[issue24906] asyncore asynchat hanging on ssl

2016-01-17 Thread SilentGhost
Changes by SilentGhost : -- nosy: +giampaolo.rodola, josiahcarlson, stutzbach ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue24906] asyncore asynchat hanging on ssl

2015-08-21 Thread Michele Comitini
New submission from Michele Comitini: When sending a message larger than 4096 bytes with smtpd on a ssl socket, everything hangs. This is due to polling before synchronizing the SSL channel with the underlying socket. The issue can be solved by properly modifying the poll function and handlin