Site icon EfmSoft

What does errno 122 (EOPNOTSUPP) mean?

 
Could be also:
ConstantTypeOS
ERROR_INSUFFICIENT_BUFFERWin32 errorWindows
ENOMSGerrnoWindows
KERNEL_DATA_INPAGE_ERRORBugCheck CodeWindows
Previous Next
ENOLINK ENOMSG

EOPNOTSUPP

The operation conflicts with endpoint semantics

EOPNOTSUPP says the requested operation is not supported on this transport endpoint. Solaris gives a concrete example: attempting to accept a connection on a datagram endpoint. The socket may be valid and the protocol may exist; the operation itself does not fit the endpoint's communication model.

This separates the code from ESOCKTNOSUPPORT, which can fail while creating an unsupported socket type, and ENOPROTOOPT, which concerns an option or option level. The failing API and socket type are the central evidence.

Match the API to the endpoint type

References


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

Exit mobile version