Successfully attached client %1. Description %1 = the IP address of the Client. %BR% The key exchange was successful and the user was authenticated. This Client is now connected to the Server. Notes This is a normal message.
Author: Lauren McTeague
*** EISCONN – 120 ***
*** EISCONN – 120 *** Description Socket is already connected. Notes This error is detected when a connect or listen call is made for a socket which is already connected or listening.
*** EDESTUNREACH – 113 ***
*** EDESTUNREACH – 113 *** Description Destination unreachable (ICMP). Notes This error occurs when an ICMP destination unreachable packet for the socket is received.
*** ECONNREFUSED – 111 ***
*** ECONNREFUSED – 111 *** Description Connection refused. Notes This error can occur during an attempt to connect a TCP socket. It is reported when a reset or an unexpected SYNC message is received.
***EADDRINUSE – 102 ***
***EADDRINUSE – 102 *** Description Another socket is already bound to the address specified in bind
*** EADDRNOTAVAIL – 101 ***
*** EADDRNOTAVAIL – 101 *** Description Endpoint address not available. This error occurs when a match for the requested address is not found in the routing table.
*** WSAEHOSTUNREACH – 10065 ***
*** WSAEHOSTUNREACH – 10065 *** Description No route to host. Notes A socket operation was attempted to an unreachable host. See WSAENETUNREACH.
*** WSAECONNREFUSED – 10061 ***
*** WSAECONNREFUSED – 10061 *** Description Connection refused. Notes No connection could be made because the target computer actively refused it. This usually results from trying to connect to a service that is inactive on the foreign host—that is, one with no server application running.
*** WSAETIMEDOUT – 10060 ***
*** WSAETIMEDOUT – 10060 *** Description Connection timed out. Notes A connection attempt failed because the connected party did not properly respond after a period of time, or the established connection failed because the connected host has failed to respond.
*** WSAENOTCONN – 10057 ***
*** WSAENOTCONN – 10057 *** Description Socket is not connected. Notes A request to send or receive data was disallowed because the socket is not connected and (when sending on a datagram socket using sendto) no address was supplied. Any other type of operation might also return this error—for example, setsockopt setting SO_KEEPALIVE if the… Continue reading *** WSAENOTCONN – 10057 ***