2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-09-02 15:05:16 +00:00

[#2645] Added max-send-queue-size

This commit is contained in:
Francis Dupont
2022-11-21 16:18:59 +01:00
parent dccb8b0c9c
commit e49a90bd98

View File

@@ -410,6 +410,13 @@ with possible entries:
Maximum number of leases to return in a single fetch (default 100). Maximum number of leases to return in a single fetch (default 100).
- ``max-send-queue-size``
Maximum number of messages of the connection send queue before
queuing received queries (default 0 which means no limit). Beware
that a sent message does not mean that previous messages were received:
both kernel and network can buffer them.
There should be common TLS parameters when TLS will be supported. There should be common TLS parameters when TLS will be supported.
For instance: For instance:
@@ -432,7 +439,8 @@ For instance:
"max-requester-connections" : 10, "max-requester-connections" : 10,
"max-concurrent-queries": 4, "max-concurrent-queries": 4,
"max-requester-idle-time" : 300, "max-requester-idle-time" : 300,
"max-leases-per-fetch" : 100 "max-leases-per-fetch" : 100,
"max-send-queue-size": 0
} }
} }
} }