What can cause a Resource temporarily unavailable
error on a socket send()
command? The socket is setup as AF_UNIX, SOCK_STREAM
. It wo
"Resource temporarily unavailable"
is the error message corresponding to EAGAIN
, which means that the operation would have blocked but nonblocking operation was requested. For send()
, that could be due to any of:
fcntl()
; orMSG_DONTWAIT
flag to send()
; orSO_SNDTIMEO
socket option.