Home
last modified time | relevance | path

Searched refs:cc_algo (Results 1 – 14 of 14) sorted by relevance

/f-stack/freebsd/netinet/cc/
H A Dcc.h57 extern STAILQ_HEAD(cc_head, cc_algo) cc_list;
59 extern struct cc_algo newreno_cc_algo;
62 VNET_DECLARE(struct cc_algo *, default_cc_ptr);
75 int cc_register_algo(struct cc_algo *add_cc);
76 int cc_deregister_algo(struct cc_algo *remove_cc);
128 struct cc_algo { struct
164 STAILQ_ENTRY (cc_algo) entries; argument
168 #define CC_ALGO(tp) ((tp)->cc_algo)
H A Dcc.c87 VNET_DEFINE(struct cc_algo *, default_cc_ptr) = &newreno_cc_algo;
96 struct cc_algo *funcs; in cc_default_algo()
132 struct cc_algo *algo; in cc_list_available()
183 cc_checkreset_default(struct cc_algo *remove_cc) in cc_checkreset_default()
214 cc_deregister_algo(struct cc_algo *remove_cc) in cc_deregister_algo()
216 struct cc_algo *funcs, *tmpfuncs; in cc_deregister_algo()
230 STAILQ_REMOVE(&cc_list, funcs, cc_algo, entries); in cc_deregister_algo()
253 cc_register_algo(struct cc_algo *add_cc) in cc_register_algo()
255 struct cc_algo *funcs; in cc_register_algo()
285 struct cc_algo *algo; in cc_modevent()
[all …]
H A Dcc_hd.c97 struct cc_algo hd_cc_algo = {
H A Dcc_vegas.c109 struct cc_algo vegas_cc_algo = {
H A Dcc_newreno.c94 struct cc_algo newreno_cc_algo = {
H A Dcc_htcp.c181 struct cc_algo htcp_cc_algo = {
H A Dcc_chd.c132 struct cc_algo chd_cc_algo = {
H A Dcc_cubic.c120 struct cc_algo cubic_cc_algo = {
H A Dcc_dctcp.c92 struct cc_algo dctcp_cc_algo = {
H A Dcc_cdg.c230 struct cc_algo cdg_cc_algo = {
/f-stack/tools/compat/include/netinet/
H A Dtcp_var.h238 struct cc_algo *cc_algo; /* congestion control algorithm */ member
922 int tcp_ccalgounload(struct cc_algo *unload_algo);
/f-stack/freebsd/netinet/
H A Dtcp_var.h238 struct cc_algo *cc_algo; /* congestion control algorithm */ member
922 int tcp_ccalgounload(struct cc_algo *unload_algo);
H A Dtcp_subr.c1827 tcp_ccalgounload(struct cc_algo *unload_algo) in tcp_ccalgounload()
1829 struct cc_algo *tmpalgo; in tcp_ccalgounload()
H A Dtcp_usrreq.c2048 struct cc_algo *algo; in tcp_default_ctloutput()