Home
last modified time | relevance | path

Searched refs:ssthresh (Results 1 – 13 of 13) sorted by relevance

/third_party/gstreamer/gstplugins_bad/ext/sctp/usrsctp/usrsctplib/netinet/
Dsctp_cc_functions.c103 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 …]
Dsctp_structs.h315 uint32_t ssthresh; /* not sure about this one for split */ member
Dsctp_sysctl.c624 xraddr.ssthresh = net->ssthresh;
Dsctp_uio.h1259 uint32_t ssthresh; member
Dsctp_timer.c792 (void *)lnets, lnets->cwnd, lnets->ssthresh);
Dsctp_input.c323 lnet->ssthresh = asoc->peers_rwnd; in sctp_process_init()
/third_party/libnl/lib/route/
Droute_utils.c150 __ADD(RTAX_SSTHRESH, ssthresh),
/third_party/lwip/src/core/
Dtcp.c1298 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()
Dtcp_out.c1798 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()
Dtcp_in.c876 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/
Dtcp.h313 tcpwnd_size_t ssthresh; member
/third_party/lwip/test/unit/tcp/
Dtest_tcp.c656 pcb->ssthresh = pcb->cwnd; in START_TEST()
1176 EXPECT(pcb->cwnd >= pcb->ssthresh); in START_TEST()
/third_party/lwip/
DCHANGELOG294 * 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