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
After #7006 it would be possible to enable ssl without socketpool as a built-in module and instead use the "stream protocol" for ssl to perform operations like read/write/close on a socket.
Leaving this open as it's not resolved by #8954: Using read/write/ioctl "protocols" is a possible enhancement to the existing ability to use wiznet sockets. In particular, "ioctl" is needed to make select.poll (& therefore asyncio) work properlyl
After #7006 it would be possible to enable
ssl
withoutsocketpool
as a built-in module and instead use the "stream protocol" forssl
to perform operations like read/write/close on a socket.If a different socket implementation such as https://github.com/adafruit/Adafruit_CircuitPython_Wiznet5k was changed to derive its sockets from
io.IOBase
, then its sockets could be successfully wrapped by an SSLContext.The text was updated successfully, but these errors were encountered: