Home
last modified time | relevance | path

Searched refs:t_timers (Results 1 – 5 of 5) sorted by relevance

/freebsd-13-stable/sys/netinet/
HDtcp_timer.c276 if (callout_pending(&tp->t_timers->tt_delack) || in tcp_timer_delack()
277 !callout_active(&tp->t_timers->tt_delack)) { in tcp_timer_delack()
282 callout_deactivate(&tp->t_timers->tt_delack); in tcp_timer_delack()
325 if (callout_pending(&tp->t_timers->tt_2msl) || in tcp_timer_2msl()
326 !callout_active(&tp->t_timers->tt_2msl)) { in tcp_timer_2msl()
331 callout_deactivate(&tp->t_timers->tt_2msl); in tcp_timer_2msl()
337 KASSERT((tp->t_timers->tt_flags & TT_STOPPED) == 0, in tcp_timer_2msl()
372 callout_reset(&tp->t_timers->tt_2msl, in tcp_timer_2msl()
416 if (callout_pending(&tp->t_timers->tt_keep) || in tcp_timer_keep()
417 !callout_active(&tp->t_timers->tt_keep)) { in tcp_timer_keep()
[all …]
HDtcp_subr.c2115 tp->t_timers = &tm->tt; in tcp_newtcpcb()
2124 callout_init(&tp->t_timers->tt_rexmt, 1); in tcp_newtcpcb()
2125 callout_init(&tp->t_timers->tt_persist, 1); in tcp_newtcpcb()
2126 callout_init(&tp->t_timers->tt_keep, 1); in tcp_newtcpcb()
2127 callout_init(&tp->t_timers->tt_2msl, 1); in tcp_newtcpcb()
2128 callout_init(&tp->t_timers->tt_delack, 1); in tcp_newtcpcb()
2298 tp->t_timers->tt_draincnt = 0; in tcp_discardcb()
2347 if (tp->t_timers->tt_draincnt == 0) { in tcp_discardcb()
2440 KASSERT((tp->t_timers->tt_flags & TT_STOPPED) != 0, in tcp_timer_discard()
2442 tp->t_timers->tt_draincnt--; in tcp_timer_discard()
[all …]
HDtcp_usrreq.c2869 &tp->t_timers->tt_rexmt, &tp->t_timers->tt_persist, &tp->t_timers->tt_keep); in db_print_tcpcb()
2872 db_printf("tt_2msl: %p tt_delack: %p t_inpcb: %p\n", &tp->t_timers->tt_2msl, in db_print_tcpcb()
2873 &tp->t_timers->tt_delack, tp->t_inpcb); in db_print_tcpcb()
HDtcp_var.h180 struct tcp_timer *t_timers; /* All the TCP timers in one struct */ member
/freebsd-13-stable/sys/netinet/tcp_stacks/
HDrack.c5983 if (tp->t_timers->tt_flags & TT_STOPPED) { in rack_timeout_rack()
6190 if (tp->t_timers->tt_flags & TT_STOPPED) { in rack_timeout_tlp()
6376 if (tp->t_timers->tt_flags & TT_STOPPED) { in rack_timeout_delack()
6404 if (tp->t_timers->tt_flags & TT_STOPPED) { in rack_timeout_persist()
6488 if (tp->t_timers->tt_flags & TT_STOPPED) { in rack_timeout_keepalive()
6717 if (tp->t_timers->tt_flags & TT_STOPPED) { in rack_timeout_rxt()