mIRC Home    About    Download    Register    News    Help

Print Thread
C
Caligo
Caligo
C
Hi, does anyone know wtf this means???

thx

Joined: Mar 2003
Posts: 272
C
Fjord artisan
Offline
Fjord artisan
C
Joined: Mar 2003
Posts: 272
EOF, i think, means End of File (at least it does in several programming languages such as VB and PHP...)

Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
I believe is a facsimile of Ping Timeout on some servers. If you are referring to it as a quit message, i think it just means they timed out (no responce in XXX seconds.

Joined: Dec 2002
Posts: 1,253
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Dec 2002
Posts: 1,253
"EOF from the client" means literally that. Remember that in *nix, everything is a file, including the sockets you use to connect to it (there are two file descriptors per socket connection, ReceiveQueue -- the incoming data from the client -- and SendQueue -- the outgoing data to the client). End of File from client means that the socket has (apparently) been closed from the client's side (RcvQ).

This is not the same error message as "Connection reset by peer", "Ping timeout", "Connection refused", "Software caused connection abort" or any of the other error messages you see occasionally. It means what it says.


Link Copied to Clipboard