mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:27:45 +00:00
SystemServer: Bump the default listening socket backlog to 16
We now have many clients that are trying to connect to the WindowServer simultaneously on startup. We could make this configurable, but 16 should be enough for anybody ™.
This commit is contained in:
parent
ad309d4eca
commit
d5582596a9
1 changed files with 1 additions and 1 deletions
|
@ -143,7 +143,7 @@ void Service::setup_socket()
|
|||
ASSERT_NOT_REACHED();
|
||||
}
|
||||
|
||||
rc = listen(m_socket_fd, 5);
|
||||
rc = listen(m_socket_fd, 16);
|
||||
if (rc < 0) {
|
||||
perror("listen");
|
||||
ASSERT_NOT_REACHED();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue