Hi,

In my application I test an FTP connection to see if i am able to connect to a server. I do this by doing :-

ftp->connectToHost("<any ftp site");
ftp->login();
ftp->close();

The login is fine, but with close I get the following events

close = 4
Started 4 command=5
STATE CHANGED - QFtp::Closing, id = 4
STATE CHANGED - QFtp::Unconnected, id = 4

I get no finished or done event being signalled. Has anyone any idea why this might be?

David