*** 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.

*** 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 ***

Replacing default serial number with MAC address %1.

Replacing default serial number with MAC address %1. Description %1 – The MAC address of the Server. %BR% If the streampi config is corrupted or not found, a default config is loaded. In this case, the serial number is changed to the server’s MAC address. Notes

*** WSAEISCONN – 10056 ***

*** WSAEISCONN – 10056 *** Description Socket is already connected. Notes A connect request was made on an already-connected socket. Some implementations also return this error if sendto is called on a connected SOCK_DGRAM socket (for SOCK_STREAM sockets, the to parameter in sendto is ignored) although other implementations treat this as a legal occurrence.