danicampora / micropython

The Micro Python project
MIT License
1 stars 1 forks source link

Improve the stability of the FTP and the Telnet server. #9

Closed danicampora closed 9 years ago

danicampora commented 9 years ago

If the socket is not closed on the other end but the connection is lost, the socket remains open on the CC3200 side. The FTP server has a 120s timer that closes the socket if no activity has been seen, but the telnet server has no such mechanism. I would like to have something more reliable and faster too.

danicampora commented 9 years ago

Done