Added some error strings.

This commit is contained in:
Philip Homburg 2005-07-27 11:53:05 +00:00
parent 3ea637a096
commit 40b364a6db

View file

@ -78,6 +78,10 @@ const char *_sys_errlist[] = {
"No such connection", /* ENOCONN */
"Address family not supported", /* EAFNOSUPPORT */
"Protocol not supported by AF", /* EPROTONOSUPPORT */
"Protocol wrong type for socket", /* EPROTOTYPE */
"Operation in progress", /* EINPROGRESS */
"Address not available", /* EADDRNOTAVAIL */
"Connection already in progress", /* EALREADY */
};
const int _sys_nerr = sizeof(_sys_errlist) / sizeof(_sys_errlist[0]);