Newsgroups : Borland : borland.public.delphi.internet.winsock : 2007 Apr : Re: indy10 ftp server dropping connections
| Subject: | Re: indy10 ftp server dropping connections |
| Posted by: | "Remy Lebeau (TeamB)" (no.spam@no.spam.com) |
| Date: | Mon, 23 Apr 2007 11:35:08 |
"API" <ari.pikivirta@kolumbus.fi> wrote in message
news:462cd91a$1@newsgroups.borland.com...
> i've now been strugling with strange problem of dropping connections
> with indy 10.1.6 package's ftp server component. this seems to be
> problem with some clients only (ie at least).
What kind of problem exactly? Please be more specific.
> what i didn't find was some information of the following timeouts
> and if they could possibly cause this:
>
> idftpserver1.TerminateWaitTime
That timeout only applies when the server is being shut down, and in
fact is not even used in the current snapshot at all.
> and on the connection:
>
> acontext.Connection.IOHandler.ConnectTimeout
ConnectTimeout has no meaning on the server side. It is only used by
TIdTCPClient.Connect().
> acontext.Connection.IOHandler.ReadTimeout
That could potentially cause a dropped connection. If a client is too
slow to send data to the server, a timeout exception could be
occuring. If it happens on the data channel, then that transfer is
simply aborted and an error sent back to the client. But if it
happens on the command channel, then it could very well be booting the
client out of the server altogether.
Gambit