@@ -66,7 +66,7 @@ const char* strerror_msgs_filesystem [] = {
6666const char * strerror_msgs_notsup [] = {
6767 " Operation not supported" , // MN_NONE = 0
6868 " Operation not supported: Cannot do this operation on a BOUND socket" , // MN_ISBOUND = 1
69- " Operation not supported: Cannot do this operation on a CONNECTED socket" , // MN_ISCONNECTED = 2
69+ " Operation not supported: Cannot do this operation on a CONNECTED or LISTENING socket" , // MN_ISCONNECTED = 2
7070 " Operation not supported: Bad parameters" , // MN_INVAL = 3
7171 " Operation not supported: Invalid socket ID" , // MN_SIDINVAL = 4
7272 " Operation not supported: Cannot do this operation on an UNBOUND socket" , // MN_ISUNBOUND = 5
@@ -76,7 +76,7 @@ const char* strerror_msgs_notsup [] = {
7676 " Operation not supported: Incorrect use of Message API (sendmsg/recvmsg)" , // MN_INVALMSGAPI = 9
7777 " Operation not supported: Incorrect use of Buffer API (send/recv) or File API (sendfile/recvfile)" , // MN_INVALBUFFERAPI = 10
7878 " Operation not supported: Another socket is already listening on the same port" , // MN_BUSY = 11
79- " Operation not supported: Message is too large to send" , // MN_XSIZE = 12
79+ " Operation not supported: Message too large to send (exceeds send buffer size) " , // MN_XSIZE = 12
8080 " Operation not supported: Invalid epoll ID" , // MN_EIDINVAL = 13
8181 " Operation not supported: All sockets removed from epoll, waiting would deadlock" , // MN_EEMPTY = 14
8282 " Operation not supported: Another socket is bound to that port and is not reusable for requested settings" , // MN_BUSYPORT = 15
0 commit comments