diff --git a/Libraries/LibCore/Socket.cpp b/Libraries/LibCore/Socket.cpp index dc5af41edc3..7ad6606168d 100644 --- a/Libraries/LibCore/Socket.cpp +++ b/Libraries/LibCore/Socket.cpp @@ -10,7 +10,8 @@ namespace Core { -static constexpr size_t MAX_LOCAL_SOCKET_TRANSFER_FDS = 64; +// FIXME: This limit has been chosen arbitrarily to avoid WPT test flakiness. +static constexpr size_t MAX_LOCAL_SOCKET_TRANSFER_FDS = 640; ErrorOr Socket::create_fd(SocketDomain domain, SocketType type) {