Add EDESTADDRREQ.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-04-21 23:10:24 +02:00
parent 1adef1d0e2
commit fd6b3cce91
2 changed files with 2 additions and 0 deletions

View File

@ -60,6 +60,7 @@
#define EADDRNOTAVAIL 68
#define EISCONN 69
#define EFAULT 70
#define EDESTADDRREQ 71
#define EOPNOTSUPP ENOTSUP

View File

@ -89,6 +89,7 @@ extern "C" const char* sortix_strerror(int errnum)
case EADDRNOTAVAIL: return "Address not available";
case EISCONN: return "Socket is connected";
case EFAULT: return "Bad address";
case EDESTADDRREQ: return "Destinatiohn address required";
default: return "Unknown error condition";
}
}