diff options
author | Anton Kling <anton@kling.gg> | 2024-06-11 23:52:27 +0200 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-06-12 00:12:13 +0200 |
commit | 08d0b7eee74b9f345241faad460d145bb0454736 (patch) | |
tree | 779f1c1db10c4e872a02aac7f4733a97892e310c /kernel/socket.h | |
parent | abf9cf5bec2712465400417cc8232fee2d1cce28 (diff) |
Improve TCP blocking of requests
Diffstat (limited to 'kernel/socket.h')
-rw-r--r-- | kernel/socket.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/socket.h b/kernel/socket.h index f41e9a1..0cb6865 100644 --- a/kernel/socket.h +++ b/kernel/socket.h @@ -53,6 +53,7 @@ struct TcpConnection { struct ringbuffer outgoing_buffer; struct relist inflight; + u8 max_inflight; int no_delay; |