mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
Add EMSGSIZE.
This commit is contained in:
parent
62734a008b
commit
db02cd569b
2 changed files with 2 additions and 0 deletions
|
@ -62,6 +62,7 @@
|
|||
#define EFAULT 70
|
||||
#define EDESTADDRREQ 71
|
||||
#define EHOSTUNREACH 72
|
||||
#define EMSGSIZE 73
|
||||
|
||||
#define EOPNOTSUPP ENOTSUP
|
||||
|
||||
|
|
|
@ -91,6 +91,7 @@ extern "C" const char* sortix_strerror(int errnum)
|
|||
case EFAULT: return "Bad address";
|
||||
case EDESTADDRREQ: return "Destinatiohn address required";
|
||||
case EHOSTUNREACH: return "Host is unreachable";
|
||||
case EMSGSIZE: return "Message too long";
|
||||
default: return "Unknown error condition";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue