Searched refs:CC_ALGO (Results 1 – 7 of 7) sorted by relevance
| /f-stack/freebsd/netinet/cc/ |
| H A D | cc.h | 168 #define CC_ALGO(tp) ((tp)->cc_algo) macro
|
| /f-stack/freebsd/netinet/ |
| H A D | tcp_timer.c | 819 if (CC_ALGO(tp)->conn_init != NULL) in tcp_timer_rexmt() 820 CC_ALGO(tp)->conn_init(tp->ccv); in tcp_timer_rexmt() 838 if (CC_ALGO(tp)->conn_init != NULL) in tcp_timer_rexmt() 839 CC_ALGO(tp)->conn_init(tp->ccv); in tcp_timer_rexmt()
|
| H A D | tcp_subr.c | 1717 CC_ALGO(tp) = CC_DEFAULT(); in tcp_newtcpcb() 1726 if (CC_ALGO(tp)->cb_init != NULL) in tcp_newtcpcb() 1727 if (CC_ALGO(tp)->cb_init(tp->ccv) > 0) { in tcp_newtcpcb() 1862 if (CC_ALGO(tp) == unload_algo) { in tcp_ccalgounload() 1863 tmpalgo = CC_ALGO(tp); in tcp_ccalgounload() 1875 CC_ALGO(tp) = &newreno_cc_algo; in tcp_ccalgounload() 2026 if (CC_ALGO(tp)->cb_destroy != NULL) in tcp_discardcb() 2027 CC_ALGO(tp)->cb_destroy(tp->ccv); in tcp_discardcb() 2037 CC_ALGO(tp) = NULL; in tcp_discardcb() 3486 bcopy(CC_ALGO(tp)->name, xt->xt_cc, in tcp_inptoxtp()
|
| H A D | tcp_input.c | 373 if (CC_ALGO(tp)->ack_received != NULL) { in cc_ack_received() 376 CC_ALGO(tp)->ack_received(tp->ccv, type); in cc_ack_received() 435 if (CC_ALGO(tp)->conn_init != NULL) in cc_conn_init() 436 CC_ALGO(tp)->conn_init(tp->ccv); in cc_conn_init() 493 if (CC_ALGO(tp)->cong_signal != NULL) { in cc_cong_signal() 496 CC_ALGO(tp)->cong_signal(tp->ccv, type); in cc_cong_signal() 507 if (CC_ALGO(tp)->post_recovery != NULL) { in cc_post_recovery() 509 CC_ALGO(tp)->post_recovery(tp->ccv); in cc_post_recovery() 536 if (CC_ALGO(tp)->ecnpkt_handler != NULL) { in cc_ecnpkt_handler() 555 CC_ALGO(tp)->ecnpkt_handler(tp->ccv); in cc_ecnpkt_handler()
|
| H A D | tcp_usrreq.c | 2072 if (CC_ALGO(tp)->ctl_output != NULL) in tcp_default_ctloutput() 2073 error = CC_ALGO(tp)->ctl_output(tp->ccv, sopt, pbuf); in tcp_default_ctloutput() 2226 if (CC_ALGO(tp)->cb_destroy != NULL) in tcp_default_ctloutput() 2227 CC_ALGO(tp)->cb_destroy(tp->ccv); in tcp_default_ctloutput() 2229 CC_ALGO(tp) = algo; in tcp_default_ctloutput() 2237 CC_ALGO(tp) = &newreno_cc_algo; in tcp_default_ctloutput() 2559 len = strlcpy(buf, CC_ALGO(tp)->name, TCP_CA_NAME_MAX); in tcp_default_ctloutput()
|
| H A D | tcp_output.c | 187 if (CC_ALGO(tp)->after_idle != NULL) in cc_after_idle() 188 CC_ALGO(tp)->after_idle(tp->ccv); in cc_after_idle()
|
| /f-stack/freebsd/netinet/tcp_stacks/ |
| H A D | rack.c | 3915 if (CC_ALGO(tp)->ack_received != NULL) { in rack_ack_received() 3918 CC_ALGO(tp)->ack_received(tp->ccv, type); in rack_ack_received() 3966 if (CC_ALGO(tp)->post_recovery != NULL) { in rack_post_recovery() 3968 CC_ALGO(tp)->post_recovery(tp->ccv); in rack_post_recovery() 4089 if (CC_ALGO(tp)->cong_signal != NULL) { in rack_cong_signal() 4092 CC_ALGO(tp)->cong_signal(tp->ccv, type); in rack_cong_signal() 4108 if (CC_ALGO(tp)->after_idle != NULL) in rack_cc_after_idle() 4109 CC_ALGO(tp)->after_idle(tp->ccv); in rack_cc_after_idle()
|