mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:07:45 +00:00
GEventLoop: Calm down with the Vector inline capacity for messages.
Using nested event loops like this would cause the stack to grow huge.
This commit is contained in:
parent
b227b57508
commit
b719bf7fde
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ private:
|
|||
ByteBuffer extra_data;
|
||||
};
|
||||
|
||||
Vector<IncomingWSMessageBundle, 64> m_unprocessed_bundles;
|
||||
Vector<IncomingWSMessageBundle> m_unprocessed_bundles;
|
||||
static pid_t s_server_pid;
|
||||
static int s_my_client_id;
|
||||
static int s_event_fd;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue