Searched refs:bytes_acked (Results 1 - 8 of 8) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/ipv4/
H A Dtcp_cong.c317 if (sysctl_tcp_abc && tp->bytes_acked < tp->mss_cache)
328 if (sysctl_tcp_abc > 1 && tp->bytes_acked >= 2*tp->mss_cache)
330 tp->bytes_acked = 0;
377 if (tp->bytes_acked >= tp->snd_cwnd*tp->mss_cache) {
378 tp->bytes_acked -= tp->snd_cwnd*tp->mss_cache;
H A Dtcp_minisocks.c446 newtp->bytes_acked = 0;
H A Dtcp_input.c841 tp->bytes_acked = 0;
2174 tp->bytes_acked = 0;
2223 tp->bytes_acked = 0;
3102 tp->bytes_acked = 0;
3480 tp->bytes_acked = 0;
3643 tp->bytes_acked += ack - prior_snd_una;
3646 tp->bytes_acked += min(ack - prior_snd_una,
H A Dtcp.c2106 tp->bytes_acked = 0;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/net/sctp/
H A Dtransport.c385 __u32 sack_ctsn, __u32 bytes_acked)
428 if (bytes_acked > pmtu)
431 cwnd += bytes_acked;
433 "bytes_acked: %d, cwnd: %d, ssthresh: %d, "
436 transport, bytes_acked, cwnd,
453 pba += bytes_acked;
459 "transport: %p, bytes_acked: %d, cwnd: %d, "
462 transport, bytes_acked, cwnd,
384 sctp_transport_raise_cwnd(struct sctp_transport *transport, __u32 sack_ctsn, __u32 bytes_acked) argument
H A Doutqueue.c1312 int bytes_acked = 0; local
1384 * mark it and account bytes_acked if the
1392 bytes_acked += sctp_data_size(tchunk);
1505 bytes_acked -= sctp_data_size(tchunk);
1574 if (bytes_acked) {
1581 bytes_acked -= migrate_bytes;
1606 bytes_acked);
1608 transport->flight_size -= bytes_acked;
1611 q->outstanding_bytes -= bytes_acked + migrate_bytes;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/third-party/libutp/
H A Dutp.cpp791 void apply_ledbat_ccontrol(size_t bytes_acked, uint32 actual_delay, int64 min_rtt);
1630 void UTPSocket::apply_ledbat_ccontrol(size_t bytes_acked, uint32 actual_delay, int64 min_rtt) argument
1656 // (min(off_target, target) / target) * (bytes_acked / max_window) * MAX_CWND_INCREASE_BYTES_PER_RTT
1664 // the min around the bytes_acked protects against the case where the window size was recently
1668 assert(bytes_acked > 0);
1669 double window_factor = (double)min(bytes_acked, max_window) / (double)max(max_window, bytes_acked);
1678 assert(scaled_gain <= 1. + MAX_CWND_INCREASE_BYTES_PER_RTT * (int)min(bytes_acked, max_window) / (double)max(max_window, bytes_acked));
1705 (our_delay + their_hist.get_value()) / 1000, target / 1000, (uint)bytes_acked,
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/linux/
H A Dtcp.h388 u32 bytes_acked; /* Appropriate Byte Counting - RFC3465 */ member in struct:tcp_sock

Completed in 144 milliseconds