Site icon EfmSoft

What does errno 126 (ENOTCONN) mean?

 
Could be also:
ConstantTypeOS
ERROR_MOD_NOT_FOUNDWin32 errorWindows
EADDRNOTAVAILerrnoSolaris
SYSTEM_THREAD_EXCEPTION_NOT_HANDLEDBugCheck CodeWindows
Previous Next
EADDRNOTAVAIL ENETDOWN

ENOTCONN

ENOTCONN means a connection-oriented operation was issued without a current peer association. It can occur because connection establishment never completed, a prior failure cleared the state, the application raced a close against I/O, or a pooled socket was returned before its lifecycle was fully reset.

Native Winsock code uses WSAENOTCONN through WSAGetLastError(). A wrapper may expose this portable macro, but the root cause is found in the socket state machine: each send or receive needs to be associated with a connection attempt and a terminal outcome.

Check the lifecycle boundary

References


Looking for a different code? Search another status or error code.

Exit mobile version