summaryrefslogtreecommitdiff
path: root/deps/uv/test/test-udp-connect.c
diff options
context:
space:
mode:
authorColin Ihrig <cjihrig@gmail.com>2022-01-06 21:45:31 -0500
committerGitHub <noreply@github.com>2022-01-07 02:45:31 +0000
commitb6b65101873c32655c8d71b4d73363d624f58770 (patch)
treea6f3cb2ab7dffcba9b84ddf59367d11b1972f149 /deps/uv/test/test-udp-connect.c
parent95e1f92722c237ec5834cc05c826c8e5ca199ca3 (diff)
downloadnode-new-b6b65101873c32655c8d71b4d73363d624f58770.tar.gz
deps: upgrade to libuv 1.43.0
Notable changes: - `uv_ip_name()` has been added. - On Windows, `uv_fs_read()` and `uv_fs_write()` now return `UV_EBADF` instead of `UV_EPERM` when the file descriptor was opened with incorrect flags. This matches the behavior on other platforms. - Streams can be reset and attempted to read from after EOF is read. - The main thread now has a valid ID instead of `NULL`. - `uv_cpu_info()` now supports `aarch64`. - Several minor issues related to mingw32 have been fixed. PR-URL: https://github.com/nodejs/node/pull/41398 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Beth Griggs <bgriggs@redhat.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'deps/uv/test/test-udp-connect.c')
-rw-r--r--deps/uv/test/test-udp-connect.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/deps/uv/test/test-udp-connect.c b/deps/uv/test/test-udp-connect.c
index 89ca1a84fc..cd159b68da 100644
--- a/deps/uv/test/test-udp-connect.c
+++ b/deps/uv/test/test-udp-connect.c
@@ -124,7 +124,7 @@ TEST_IMPL(udp_connect) {
buf = uv_buf_init("EXIT", 4);
- /* connect() to INADDR_ANY fails on Windows wih WSAEADDRNOTAVAIL */
+ /* connect() to INADDR_ANY fails on Windows with WSAEADDRNOTAVAIL */
ASSERT_EQ(0, uv_ip4_addr("0.0.0.0", TEST_PORT, &tmp_addr));
r = uv_udp_connect(&client, (const struct sockaddr*) &tmp_addr);
#ifdef _WIN32