mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Add EDESTADDRREQ.
This commit is contained in:
parent
1adef1d0e2
commit
fd6b3cce91
2 changed files with 2 additions and 0 deletions
|
@ -60,6 +60,7 @@
|
|||
#define EADDRNOTAVAIL 68
|
||||
#define EISCONN 69
|
||||
#define EFAULT 70
|
||||
#define EDESTADDRREQ 71
|
||||
|
||||
#define EOPNOTSUPP ENOTSUP
|
||||
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue