Add ENETDOWN.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-04-21 23:12:43 +02:00
parent db02cd569b
commit 670f612e12
2 changed files with 2 additions and 0 deletions

View File

@ -63,6 +63,7 @@
#define EDESTADDRREQ 71
#define EHOSTUNREACH 72
#define EMSGSIZE 73
#define ENETDOWN 74
#define EOPNOTSUPP ENOTSUP

View File

@ -92,6 +92,7 @@ extern "C" const char* sortix_strerror(int errnum)
case EDESTADDRREQ: return "Destinatiohn address required";
case EHOSTUNREACH: return "Host is unreachable";
case EMSGSIZE: return "Message too long";
case ENETDOWN: return "Network is down";
default: return "Unknown error condition";
}
}