Home
last modified time | relevance | path

Searched refs:flight_size (Results 1 – 9 of 9) sorted by relevance

/netbsd/src/sys/netinet/
Dsctp_var.h113 if (tp1->whoTo->flight_size >= tp1->book_size) \
114 tp1->whoTo->flight_size -= tp1->book_size; \
116 tp1->whoTo->flight_size = 0; \
120 (tp1)->whoTo->flight_size += (tp1)->book_size; \
Dsctp_timer.c405 if (stcb->asoc.total_flight >= net->flight_size) { in sctp_mark_all_for_resend()
406 stcb->asoc.total_flight -= net->flight_size; in sctp_mark_all_for_resend()
415 orig_flight = net->flight_size; in sctp_mark_all_for_resend()
416 stcb->asoc.peers_rwnd += net->flight_size; in sctp_mark_all_for_resend()
417 net->flight_size = 0; in sctp_mark_all_for_resend()
652 lnets->flight_size = 0; in sctp_mark_all_for_resend()
663 chk->whoTo->flight_size += chk->book_size; in sctp_mark_all_for_resend()
Dsctputil.c212 sctp_clog[sctp_cwnd_log_at].x.cwnd.inflight = net->flight_size; in sctp_log_cwnd()
228 sctp_clog[sctp_cwnd_log_at].x.cwnd.inflight = net->flight_size; in sctp_log_maxburst()
254 sctp_log_rwnd_set(uint8_t from, u_int32_t peers_rwnd , u_int32_t flight_size, u_int32_t overhead, u… in sctp_log_rwnd_set() argument
259 sctp_clog[sctp_cwnd_log_at].x.rwnd.send_size = flight_size; in sctp_log_rwnd_set()
525 tot_out += lnet->flight_size; in sctp_auditing()
546 if (lnet->flight_size != tot_out) { in sctp_auditing()
548 (uint32_t)lnet, lnet->flight_size, tot_out); in sctp_auditing()
549 lnet->flight_size = tot_out; in sctp_auditing()
Dsctp_structs.h169 u_int32_t flight_size; member
Dsctp_indata.c3634 net->flight_size = 0; in sctp_handle_sack()
3910 if (net->flight_size + net->net_ack >= in sctp_handle_sack()
3935 dif = net->cwnd - (net->flight_size + in sctp_handle_sack()
3954 if (net->flight_size + net->net_ack >= in sctp_handle_sack()
3993 dif = net->cwnd - (net->flight_size + in sctp_handle_sack()
4065 net->flight_size = 0; in sctp_handle_sack()
Dsctp_output.c4930 net->flight_size += data_list[i]->book_size;
5137 goal_mtu = net->cwnd - net->flight_size;
5340 net, net->flight_size, net->cwnd);
5343 if (net->flight_size >= net->cwnd) {
5349 net->flight_size,
5708 if (net->flight_size >= net->cwnd) {
5713 net->flight_size, net->cwnd);
6654 if (net->flight_size >= net->cwnd) {
6787 net->flight_size += data_list[i]->book_size;
6995 if ((net->flight_size+(burst_limit*net->mtu)) < net->cwnd) {
[all …]
Dsctp_input.c2916 if (on_queue < net->flight_size) in sctp_handle_packet_dropped()
2917 on_queue = net->flight_size; in sctp_handle_packet_dropped()
2952 seg_inflight = net->flight_size / net->mtu; in sctp_handle_packet_dropped()
2957 if (net->cwnd > net->flight_size) { in sctp_handle_packet_dropped()
2963 diff_adj = net->cwnd - net->flight_size; in sctp_handle_packet_dropped()
Dsctp_usrreq.c319 if (net->flight_size >= chk->book_size) { in sctp_notify_mbuf()
320 net->flight_size -= chk->book_size; in sctp_notify_mbuf()
322 net->flight_size = 0; in sctp_notify_mbuf()
/netbsd/src/sys/netinet6/
Dsctp6_usrreq.c378 net->flight_size -= chk->send_size; in sctp6_notify_mbuf()