Searched refs:cur_tw_slot (Results 1 - 1 of 1) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_timer.c230 int cur_tw_slot = 0; variable
297 tw_slot = (timer & (N_TIME_WAIT_SLOTS - 1)) + cur_tw_slot;
441 KERNEL_DEBUG(DBG_FNC_TCP_SLOW | DBG_FUNC_END, tws_checked, cur_tw_slot,0,0,0);
456 LIST_FOREACH(inp, &time_wait_slots[cur_tw_slot], inp_list) {
496 LIST_FOREACH_SAFE(inp, &time_wait_slots[cur_tw_slot], inp_list, nxt) {
500 if (++cur_tw_slot >= N_TIME_WAIT_SLOTS)
501 cur_tw_slot = 0;
504 KERNEL_DEBUG(DBG_FNC_TCP_SLOW | DBG_FUNC_END, tws_checked, cur_tw_slot,0,0,0);

Completed in 15 milliseconds