Site icon EfmSoft

What does errno 133 (EISCONN) mean?

 
Could be also:
ConstantTypeOS
ERROR_IS_JOIN_TARGETWin32 errorWindows
EOWNERDEADerrnoWindows
SETUP_FAILUREBugCheck CodeWindows
Previous Next
EOVERFLOW EOWNERDEAD

EISCONN

The endpoint already has connection state

EISCONN is about socket state, not reachability. Solaris documents two important cases: another connect request is made on an already connected endpoint, or sendto()/sendmsg() supplies a destination for an endpoint whose connection already determines the peer.

This differs from EALREADY, where a nonblocking operation is still in progress, and from ENOTCONN, where a connection-required operation has no established peer. Checking the state transition and the exact API call is therefore more useful than testing routers or firewall policy.

What to inspect in socket code

References


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

Exit mobile version