Kernel: Bump the number of fd's that can be queued on a local socket
This commit is contained in:
parent
0324144e2a
commit
a8c823f242
Notes:
sideshowbarker
2024-07-18 22:45:52 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/a8c823f242a
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ KResult LocalSocket::sendfd(const FileDescription& socket_description, FileDescr
|
|||
return EINVAL;
|
||||
auto& queue = sendfd_queue_for(socket_description);
|
||||
// FIXME: Figure out how we should limit this properly.
|
||||
if (queue.size() > 16)
|
||||
if (queue.size() > 128)
|
||||
return EBUSY;
|
||||
queue.append(move(passing_description));
|
||||
return KSuccess;
|
||||
|
|
Loading…
Add table
Reference in a new issue