mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-31 13:19:05 +00:00
Kernel: Increase IPv4 buffer size to 256kB
This increases the buffer size for connection-oriented sockets to 256kB. In combination with the other patches in this series I was able to receive TCP packets at a rate of about 120Mbps.
This commit is contained in:
parent
b00cdf8ed8
commit
b83a110174
Notes:
sideshowbarker
2024-07-18 18:18:19 +09:00
Author: https://github.com/gunnarbeutner
Commit: b83a110174
Pull-request: https://github.com/SerenityOS/serenity/pull/7049
Reviewed-by: https://github.com/awesomekling
Reviewed-by: https://github.com/bgianfo ✅
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ private:
|
|||
|
||||
SinglyLinkedListWithCount<ReceivedPacket> m_receive_queue;
|
||||
|
||||
DoubleBuffer m_receive_buffer;
|
||||
DoubleBuffer m_receive_buffer { 256 * KiB };
|
||||
|
||||
u16 m_local_port { 0 };
|
||||
u16 m_peer_port { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue