diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2022-08-04 11:37:58 +0200 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2022-08-04 11:37:58 +0200 |
commit | a8c1dd2ce08039e939dd1c57f02e5f1ed1593398 (patch) | |
tree | a00346b57b32abeaf0c32d8f61e6f883a50f2995 | |
parent | 8053ccd44bf3bae3092ca52c4cb5e41f19e813a6 (diff) | |
download | newlib-a8c1dd2ce08039e939dd1c57f02e5f1ed1593398.zip newlib-a8c1dd2ce08039e939dd1c57f02e5f1ed1593398.tar.gz newlib-a8c1dd2ce08039e939dd1c57f02e5f1ed1593398.tar.bz2 |
Cygwin: net.cc: create own type host_errmap_t for host_errmap
This decouples host_errmap from the errmap_t definition which is
about to be changed in a followup patch.
Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
-rw-r--r-- | winsup/cygwin/net.cc | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc index 0872484..83ea37f 100644 --- a/winsup/cygwin/net.cc +++ b/winsup/cygwin/net.cc @@ -205,11 +205,12 @@ __set_winsock_errno (const char *fn, int ln) syscall_printf ("%s:%d - winsock error %u -> errno %d", fn, ln, werr, err); } -/* - * Since the member `s' isn't used for debug output we can use it - * for the error text returned by herror and hstrerror. - */ -static const errmap_t host_errmap[] = { +static const struct host_errmap_t +{ + DWORD w; /* windows version of error */ + const char *s; /* error text returned by herror and hstrerror */ + int e; /* errno version of error */ +} host_errmap[] = { {WSAHOST_NOT_FOUND, "Unknown host", HOST_NOT_FOUND}, {WSATRY_AGAIN, "Host name lookup failure", TRY_AGAIN}, {WSANO_RECOVERY, "Unknown server error", NO_RECOVERY}, |