#define ENETDOWN (_SIGN 77) /* network is down */
#define EPFNOSUPPORT (_SIGN 78) /* Protocol family not supported */
#define EDESTADDRREQ (_SIGN 79) /* Destination address required */
+#define EHOSTDOWN (_SIGN 80) /* Host down */
/* The following are not POSIX errors, but they can still happen.
* All of these are generated by the kernel and relate to message passing.
"Network is down", /* ENETDOWN */
"Protocol family not supported", /* EPFNOSUPPORT */
"Destination address required", /* EDESTADDRREQ */
+ "Host is down", /* EHOSTDOWN */
};
const int _sys_nerr = sizeof(_sys_errlist) / sizeof(_sys_errlist[0]);
A socket operation specified an unsupported protocol family.
.It Er 79 EDESTADDRREQ Em "Destination address required" .
A required address was omitted from an operation on a socket.
+.It Er 80 EHOSTDOWN Em "Host is down" .
+The destination host has been determined to be down or disconnected.
.El
.Sh DEFINITIONS
.Bl -tag -width Ds