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
when downloading a file from the ftp server, whenever I open a file where fileOpen will fail (ftp.c, line 840), and I do this 2 times, the server returns 425 on the following commands, "can't create data socket". I saw that from stepping in the code, when doing get on the FTP client, the server first receives the command PASV and enters the case TCPIP_FTP_CMD_PASV where it calls NET_PRES_SocketSignalHandlerRegister. When fileOpen succeeds, NET_PRES_SocketSignalHandlerDeregister is called. However when fileOpen fails, NET_PRES_SocketSignalHandlerDeregister is not called, the code never steps into NET_PRES_SocketSignalHandlerDeregister.
I am assuming that maybe the sockets are leaked because of this, and that's why I get the error. Any support would be very appreciated.
Thank you.
The text was updated successfully, but these errors were encountered:
when downloading a file from the ftp server, whenever I open a file where
fileOpen
will fail (ftp.c, line 840), and I do this 2 times, the server returns 425 on the following commands, "can't create data socket". I saw that from stepping in the code, when doingget
on the FTP client, the server first receives the command PASV and enters the caseTCPIP_FTP_CMD_PASV
where it callsNET_PRES_SocketSignalHandlerRegister
. WhenfileOpen
succeeds,NET_PRES_SocketSignalHandlerDeregister
is called. However whenfileOpen
fails,NET_PRES_SocketSignalHandlerDeregister
is not called, the code never steps intoNET_PRES_SocketSignalHandlerDeregister
.I am assuming that maybe the sockets are leaked because of this, and that's why I get the error. Any support would be very appreciated.
Thank you.
The text was updated successfully, but these errors were encountered: