Hello,
I have a FTP client, that use edtFTPnet library, connection throw socks5 proxy.
The program make many connections to different servers, but in some moment in some thread I see next situation.
The part of code:
try{
Console.WriteLine("Connection to the FTP");
_ftp.Connect();
Console.WriteLine("Connected");
}catch{
Console.WriteLine("Error");
}
But in log file I see only:
Connection to the FTP
Function Connect() don't return response for a long time.
How I can solve this problem?
Thanks.