Searched refs:cwin (Results 1 – 3 of 3) sorted by relevance
| /xnu-11215.81.4/bsd/netinet/ |
| H A D | tcp_rack.c | 352 tcp_rack_adjust(struct tcpcb *tp, uint32_t cwin) in tcp_rack_adjust() argument 363 if (max_len >= cwin) { in tcp_rack_adjust() 383 tcp_rack_output(struct tcpcb *tp, uint32_t cwin, uint16_t *rack_seg_len) in tcp_rack_output() argument 393 uint16_t allowed_size = (uint16_t)min(cwin, tp->t_maxseg); in tcp_rack_output()
|
| H A D | tcp_output.c | 961 int32_t cwin = tp->snd_cwnd - tcp_flight_size(tp); in tcp_output() local 962 if (cwin > 0) { in tcp_output() 963 max_len = tcp_rack_adjust(tp, (uint32_t)cwin); in tcp_output() 996 int32_t cwin = min(tp->snd_wnd, tp->snd_cwnd) - tcp_flight_size(tp); in tcp_output() local 997 if (cwin <= 0 && sack_rxmted == FALSE) { in tcp_output() 999 cwin = tp->t_maxseg; in tcp_output() 1003 if (cwin < 0) { in tcp_output() 1004 cwin = 0; in tcp_output() 1009 if ((seg = tcp_rack_output(tp, cwin, &rack_seg_len)) != NULL) { in tcp_output() 1010 len = min(cwin, rack_seg_len); in tcp_output() [all …]
|
| H A D | tcp_var.h | 1856 struct tcp_seg_sent * tcp_rack_output(struct tcpcb *tp, uint32_t cwin, uint16_t *rack_seg_len); 1858 uint32_t tcp_rack_adjust(struct tcpcb *tp, uint32_t cwin);
|