mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Latest changes
- [BUGFIX] Add connection to Tickable Queue on stream write - cmake: use MSVC variable instead of trying to detect - engine: improve connection incref/decref logging - stream: don't ignore errors that may occur on triggered flush - connection: remove obsolete method - engine: indicate connection as tickable if previous call went over threshold
This commit is contained in:
parent
1279d5bfcd
commit
82f3bcef32
6 changed files with 63 additions and 42 deletions
|
@ -344,12 +344,14 @@ struct lsquic_engine_settings {
|
|||
|
||||
/**
|
||||
* If set, this value specifies that number of microseconds that
|
||||
* @ref lsquic_engine_process_conns() is allowed to spend before
|
||||
* returning.
|
||||
* @ref lsquic_engine_process_conns() and
|
||||
* @ref lsquic_engine_send_unsent_packets() are allowed to spend
|
||||
* before returning.
|
||||
*
|
||||
* This is not an exact science and the connections must make
|
||||
* progress, so the deadline is checked after all connections get
|
||||
* a chance to tick and at least one batch of packets is sent out.
|
||||
* a chance to tick (in the case of @ref lsquic_engine_process_conns())
|
||||
* and at least one batch of packets is sent out.
|
||||
*
|
||||
* When processing function runs out of its time slice, immediate
|
||||
* calls to @ref lsquic_engine_has_unsent_packets() return false.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue