2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

Rename sock->timer to sock->read_timer

Before adding the write timer, we have to remove the generic sock->timer
to sock->read_timer.  We don't touch the function names to limit the
impact of the refactoring.
This commit is contained in:
Ondřej Surý
2022-02-09 10:59:08 +01:00
parent 92338f2e29
commit 45a73c113f
6 changed files with 50 additions and 44 deletions

View File

@@ -950,7 +950,7 @@ struct isc_nmsocket {
/*%
* TCP read/connect timeout timers.
*/
uv_timer_t timer;
uv_timer_t read_timer;
uint64_t read_timeout;
uint64_t connect_timeout;