Searched refs:tcp_cc_rledbat (Results 1 – 6 of 6) sorted by relevance
| /xnu-8019.80.24/bsd/netinet/ |
| H A D | tcp_rledbat.c | 63 struct tcp_rcv_cc_algo tcp_cc_rledbat = { variable 88 OSIncrementAtomic((volatile int *)&tcp_cc_rledbat.num_sockets); in tcp_rledbat_init() 99 OSDecrementAtomic((volatile int *)&tcp_cc_rledbat.num_sockets); in tcp_rledbat_cleanup()
|
| H A D | tcp_cc.h | 265 extern struct tcp_rcv_cc_algo tcp_cc_rledbat;
|
| H A D | tcp_input.c | 3122 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.data_rcvd != NULL) { in tcp_input() 3123 tcp_cc_rledbat.data_rcvd(tp, th, &to, tlen); in tcp_input() 3474 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.get_rlwin != NULL) { in tcp_input() 3476 uint32_t rledbat_win = tcp_cc_rledbat.get_rlwin(tp); in tcp_input() 5180 tcp_cc_rledbat.data_rcvd != NULL) { in tcp_input() 5181 tcp_cc_rledbat.data_rcvd(tp, th, &to, tlen); in tcp_input() 5232 tcp_cc_rledbat.data_rcvd != NULL) { in tcp_input() 5233 tcp_cc_rledbat.data_rcvd(tp, th, &to, tlen); in tcp_input() 6394 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.rwnd_init != NULL) { in tcp_mss() 6395 tcp_cc_rledbat.rwnd_init(tp); in tcp_mss() [all …]
|
| H A D | tcp_timer.c | 941 tcp_cc_rledbat.rwnd_init != NULL) { in tcp_pmtud_revert_segment_size() 942 tcp_cc_rledbat.rwnd_init(tp); in tcp_pmtud_revert_segment_size() 1311 tcp_cc_rledbat.rwnd_init != NULL) { in tcp_timers() 1312 tcp_cc_rledbat.rwnd_init(tp); in tcp_timers()
|
| H A D | tcp_subr.c | 1138 tcp_cc_rledbat.init != NULL) { in tcp_newtcpcb() 1139 tcp_cc_rledbat.init(tp); in tcp_newtcpcb() 1672 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.cleanup != NULL) { in tcp_close() 1673 tcp_cc_rledbat.cleanup(tp); in tcp_close() 2905 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.rwnd_init != NULL) { in tcp_mtudisc() 2906 tcp_cc_rledbat.rwnd_init(tp); in tcp_mtudisc()
|
| H A D | tcp_output.c | 1301 if (recwin > 0 && tcp_cc_rledbat.get_rlwin != NULL) { in tcp_output() 1303 recwin = imin(recwin, tcp_cc_rledbat.get_rlwin(tp)); in tcp_output()
|