mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 00:19:53 +01:00
LibCore: Increase MAX_LOCAL_SOCKET_TRANSFER_FDS
It is currently possible to hit this limit on pages with large numbers of images. This temporary workaround prevents some WPT tests with large numbers of images from failing.
This commit is contained in:
parent
71222df4c4
commit
fe99c1fa7c
|
|
@ -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<int> Socket::create_fd(SocketDomain domain, SocketType type)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user