eclipse-ecal / fineftp-server

📦 C++ FTP Server Library for Windows 🪟, Linux 🐧 & more 💾
MIT License
311 stars 64 forks source link

The data socket is now closed, when the control socket shuts down for any reason #34

Closed FlorianReimold closed 2 years ago

FlorianReimold commented 2 years ago

This fixes a bug that caused an FTP Session not being deleted internally, when the control socket it closed before the client connected to the data socket. The data socket would then previously continue to wait for the client and therefore keep the session alive indefinitely.

Fixes #33