Searched refs:ssthresh (Results 1 – 13 of 13) sorted by relevance
/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/ |
D | sctp_cc_functions.c | 103 net->ssthresh = assoc->peers_rwnd; in sctp_set_initial_cc_param() 130 t_ssthresh += net->ssthresh; in sctp_cwnd_update_after_fr() 162 net->ssthresh = (uint32_t)(((uint64_t)4 * in sctp_cwnd_update_after_fr() 164 (uint64_t)net->ssthresh) / in sctp_cwnd_update_after_fr() 177 net->ssthresh = (uint32_t) (((uint64_t)4 * in sctp_cwnd_update_after_fr() 185 (net->ssthresh < net->cwnd - t_cwnd / 2)) { in sctp_cwnd_update_after_fr() 186 net->ssthresh = net->cwnd - t_cwnd / 2; in sctp_cwnd_update_after_fr() 188 if (net->ssthresh < net->mtu) { in sctp_cwnd_update_after_fr() 189 net->ssthresh = net->mtu; in sctp_cwnd_update_after_fr() 192 net->ssthresh = net->cwnd / 2; in sctp_cwnd_update_after_fr() [all …]
|
D | sctp_structs.h | 315 uint32_t ssthresh; /* not sure about this one for split */ member
|
D | sctp_sysctl.c | 624 xraddr.ssthresh = net->ssthresh;
|
D | sctp_uio.h | 1259 uint32_t ssthresh; member
|
D | sctp_timer.c | 792 (void *)lnets, lnets->cwnd, lnets->ssthresh);
|
D | sctp_input.c | 323 lnet->ssthresh = asoc->peers_rwnd; in sctp_process_init()
|
/third_party/libnl/lib/route/ |
D | route_utils.c | 150 __ADD(RTAX_SSTHRESH, ssthresh),
|
/third_party/lwip/src/core/ |
D | tcp.c | 1298 pcb->ssthresh = eff_wnd >> 1; in tcp_slowtmr() 1299 if (pcb->ssthresh < (tcpwnd_size_t)(pcb->mss << 1)) { in tcp_slowtmr() 1300 pcb->ssthresh = (tcpwnd_size_t)(pcb->mss << 1); in tcp_slowtmr() 1305 pcb->cwnd, pcb->ssthresh)); in tcp_slowtmr() 1914 pcb->ssthresh = TCP_SND_BUF; in tcp_alloc()
|
D | tcp_out.c | 1798 pcb->ssthresh = LWIP_MIN(pcb->cwnd, pcb->snd_wnd) / 2; in tcp_rexmit_fast() 1801 if (pcb->ssthresh < (2U * pcb->mss)) { in tcp_rexmit_fast() 1805 pcb->ssthresh, (u16_t)(2 * pcb->mss))); in tcp_rexmit_fast() 1806 pcb->ssthresh = 2 * pcb->mss; in tcp_rexmit_fast() 1809 pcb->cwnd = pcb->ssthresh + 3 * pcb->mss; in tcp_rexmit_fast()
|
D | tcp_in.c | 876 pcb->cwnd, pcb->ssthresh)); 964 pcb->cwnd, pcb->ssthresh)); 1238 pcb->cwnd = pcb->ssthresh; 1258 if (pcb->cwnd < pcb->ssthresh) {
|
/third_party/lwip/src/include/lwip/ |
D | tcp.h | 313 tcpwnd_size_t ssthresh; member
|
/third_party/lwip/test/unit/tcp/ |
D | test_tcp.c | 656 pcb->ssthresh = pcb->cwnd; in START_TEST() 1176 EXPECT(pcb->cwnd >= pcb->ssthresh); in START_TEST()
|
/third_party/lwip/ |
D | CHANGELOG | 294 * tcp: Initialize ssthresh to TCP_SND_BUF (bug #50476) 828 * tcp.c, tcp_in.c: fixed bug #44023: TCP ssthresh value is unclear: ssthresh 2073 * tcp.c: Ensure ssthresh >= 2*MSS
|