mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 07:22:21 +00: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
Notes:
github-actions[bot]
2025-05-22 12:01:02 +00:00
Author: https://github.com/tcl3
Commit: fe99c1fa7c
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4840
Reviewed-by: https://github.com/trflynn89 ✅
1 changed files with 2 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue