Categories
Exclude from Global Search Knowledge Support Log Level Warning Support exacqVision Server Categories Products Logs Other

***EADDRINUSE – 102 ***

***EADDRINUSE – 102 ***

Description

Another socket is already bound to the address specified in bind

Categories
Exclude from Global Search Knowledge Support Log Level Support Warning exacqVision Server Categories Products Logs Other

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

Categories
Exclude from Global Search Knowledge Support Log Level Support Warning exacqVision Server Categories Products Logs Other

*** WSAEHOSTUNREACH – 10065 ***

*** WSAEHOSTUNREACH – 10065 ***

Description

No route to host.

Notes

A socket operation was attempted to an unreachable host. See WSAENETUNREACH.

Categories
Knowledge Support Exclude from Global Search Log Level Support Warning exacqVision Server Categories Products Logs Other

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

Categories
Knowledge Support Exclude from Global Search Log Level Support Warning exacqVision Server Categories Products Logs Other

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

Categories
Knowledge Support Exclude from Global Search Log Level Warning Support exacqVision Server Categories Products Logs Other

*** 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 connection has been reset.

Categories
Exclude from Global Search Knowledge Support Warning Support exacqVision Server Categories Products Logs StreamPI

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

Categories
Exclude from Global Search Knowledge Support Log Level Warning Support exacqVision Server Categories Products Logs Other

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

Categories
Exclude from Global Search Knowledge Support Log Level Warning Support exacqVision Server Categories Products Logs Other

*** WSAENOBUFS – 10055 ***

*** WSAENOBUFS – 10055 ***

Description

No buffer space available.

Notes

An operation on a socket could not be performed because the system lacked sufficient buffer space or because a queue was full.

Categories
Exclude from Global Search Knowledge Support Log Level Warning Support exacqVision Server Categories Products Logs Other

*** WSAECONNRESET – 10054 ***

*** WSAECONNRESET – 10054 ***

Description

Connection reset by peer.

Notes

An 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, the host or remote network interface is disabled, or the remote host uses a hard close (see setsockopt for more information on the SO_LINGER option on the remote socket). This error may also result if a connection was broken due to keep-alive activity detecting a failure while one or more operations are in progress. Operations that were in progress fail with WSAENETRESET. Subsequent operations fail with WSAECONNRESET.