Searched refs:tcp_cc_rledbat (Results 1 – 6 of 6) sorted by relevance
| /xnu-12377.81.4/bsd/netinet/ |
| H A D | tcp_rledbat.c | 49 struct tcp_rcv_cc_algo tcp_cc_rledbat = { variable 74 os_atomic_inc(&tcp_cc_rledbat.num_sockets, relaxed); in tcp_rledbat_init() 85 os_atomic_dec(&tcp_cc_rledbat.num_sockets, relaxed); in tcp_rledbat_cleanup()
|
| H A D | tcp_cc.h | 271 extern struct tcp_rcv_cc_algo tcp_cc_rledbat;
|
| H A D | tcp_input.c | 3955 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.data_rcvd != NULL) { in tcp_input() 3956 tcp_cc_rledbat.data_rcvd(tp, th, &to, tlen); in tcp_input() 4187 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.get_rlwin != NULL) { in tcp_input() 4189 uint32_t rledbat_win = tcp_cc_rledbat.get_rlwin(tp); in tcp_input() 6037 tcp_cc_rledbat.data_rcvd != NULL) { in tcp_input() 6038 tcp_cc_rledbat.data_rcvd(tp, th, &to, tlen); in tcp_input() 6087 tcp_cc_rledbat.data_rcvd != NULL) { in tcp_input() 6088 tcp_cc_rledbat.data_rcvd(tp, th, &to, tlen); in tcp_input() 7296 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.rwnd_init != NULL) { in tcp_mss() 7297 tcp_cc_rledbat.rwnd_init(tp); in tcp_mss() [all …]
|
| H A D | tcp_timer.c | 945 tcp_cc_rledbat.rwnd_init != NULL) { in tcp_pmtud_revert_segment_size() 946 tcp_cc_rledbat.rwnd_init(tp); in tcp_pmtud_revert_segment_size() 1319 tcp_cc_rledbat.rwnd_init != NULL) { in tcp_timers() 1320 tcp_cc_rledbat.rwnd_init(tp); in tcp_timers()
|
| H A D | tcp_subr.c | 1372 tcp_cc_rledbat.init != NULL) { in tcp_newtcpcb() 1373 tcp_cc_rledbat.init(tp); in tcp_newtcpcb() 1994 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.cleanup != NULL) { in tcp_close() 1995 tcp_cc_rledbat.cleanup(tp); in tcp_close() 3226 if (TCP_USE_RLEDBAT(tp, so) && tcp_cc_rledbat.rwnd_init != NULL) { in tcp_mtudisc() 3227 tcp_cc_rledbat.rwnd_init(tp); in tcp_mtudisc()
|
| H A D | tcp_output.c | 1806 if (recwin > 0 && tcp_cc_rledbat.get_rlwin != NULL) { in tcp_output() 1808 recwin = imin(recwin, tcp_cc_rledbat.get_rlwin(tp)); in tcp_output()
|