Add EADDRNOTAVAIL.

This commit is contained in:
Jonas 'Sortie' Termansen 2013-04-21 23:05:43 +02:00
parent 5e9bd04cc7
commit 8427ee7a0f
2 changed files with 2 additions and 0 deletions

View File

@ -57,6 +57,7 @@
#define ESHUTDOWN 65
#define ECONNABORTED 66
#define ECONNRESET 67
#define EADDRNOTAVAIL 68
#define EOPNOTSUPP ENOTSUP

View File

@ -86,6 +86,7 @@ extern "C" const char* sortix_strerror(int errnum)
case ESHUTDOWN: return "Cannot send after transport endpoint shutdown";
case ECONNABORTED: return "Connection aborted";
case ECONNRESET: return "Connection reset";
case EADDRNOTAVAIL: return "Address not available";
default: return "Unknown error condition";
}
}