Subject Re: [ib-support] Help on FB errno 10058 and 10054
Author Achim Kaiser
> SERV9212 (Server) Sun Mar 10 04:05:55 2002
> INET/inet_error: read errno = 10058

Error 10058 means WSAESHUTDOWN

Cannot send after socket shutdown.

A request to send or receive data was disallowed because the socket had
already been shut down in that direction with a previous shutdown call.
By calling shutdown a partial close of a socket is requested,
which is a signal that sending or receiving or both has been discontinued.

> SERV9212 (Server) Mon Mar 11 10:47:53 2002
> INET/inet_error: read errno = 10054

Error 10054 means WSAECONNRESET

Connection reset by peer.

A existing connection was forcibly closed by the remote host.
This normally results if the peer application on the remote host is suddenly
stopped,
the host is rebooted, or the remote host used a "hard close"
(see setsockopt for more information on the SO_LINGER option on the remote
socket.)

Possible things I would check :
* lokal acessed server plus network connection
---> for local acces at the server use
localhost:D:\DATA\DATABASE.GDB
to force the tcp/ip stack not the mapped file mode
* connection problem caused by different connection-strings,
with mixed protocols
* crashed server caused by a udf
* network problem, defect nic-card.

HTH Achim