diff options
author | Saúl Ibarra Corretgé <s@saghul.net> | 2022-11-07 14:10:35 +0100 |
---|---|---|
committer | Saúl Ibarra Corretgé <s@saghul.net> | 2022-11-08 06:51:07 +0100 |
commit | a7b16bfb332f6aa2bf25bdcbc4ddf624f44b6ba1 (patch) | |
tree | 793f392da89b61a2867aafa7e3c6f1ffcb8a176a /docs/src | |
parent | 2b4b293ebb2e876fe61df37c00d522ce55f2e34d (diff) | |
download | libuv-a7b16bfb332f6aa2bf25bdcbc4ddf624f44b6ba1.tar.gz libuv-a7b16bfb332f6aa2bf25bdcbc4ddf624f44b6ba1.zip |
win: drop code checking for Windows XP / Server 2k3
Our minimum requirements are Windows 8 now.
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/fs.rst | 4 | ||||
-rw-r--r-- | docs/src/guide/networking.rst | 3 |
2 files changed, 1 insertions, 6 deletions
diff --git a/docs/src/fs.rst b/docs/src/fs.rst index e6e7088e..86d77c79 100644 --- a/docs/src/fs.rst +++ b/docs/src/fs.rst @@ -465,10 +465,6 @@ API The background story and some more details on these issues can be checked `here <https://github.com/nodejs/node/issues/7726>`_. - .. note:: - This function is not implemented on Windows XP and Windows Server 2003. - On these systems, UV_ENOSYS is returned. - .. versionadded:: 1.8.0 .. c:function:: int uv_fs_chown(uv_loop_t* loop, uv_fs_t* req, const char* path, uv_uid_t uid, uv_gid_t gid, uv_fs_cb cb) diff --git a/docs/src/guide/networking.rst b/docs/src/guide/networking.rst index dcb56431..892ade00 100644 --- a/docs/src/guide/networking.rst +++ b/docs/src/guide/networking.rst @@ -164,7 +164,7 @@ IPv6 stack only IPv6 sockets can be used for both IPv4 and IPv6 communication. If you want to restrict the socket to IPv6 only, pass the ``UV_UDP_IPV6ONLY`` flag to -``uv_udp_bind`` [#]_. +``uv_udp_bind``. Multicast ~~~~~~~~~ @@ -250,7 +250,6 @@ times, with each address being reported once. ---- .. [#] https://beej.us/guide/bgnet/html/#broadcast-packetshello-world -.. [#] on Windows only supported on Windows Vista and later. .. [#] https://www.tldp.org/HOWTO/Multicast-HOWTO-6.html#ss6.1 .. [#] libuv use the system ``getaddrinfo`` in the libuv threadpool. libuv v0.8.0 and earlier also included c-ares_ as an alternative, but this has been |