HomeSort by: relevance | last modified time | path
    Searched refs:flight_size (Results 1 - 9 of 9) sorted by relevancy

  /src/sys/netinet/
sctp_var.h 113 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; \
sctp_timer.c 405 if (stcb->asoc.total_flight >= net->flight_size) {
406 stcb->asoc.total_flight -= net->flight_size;
415 orig_flight = net->flight_size;
416 stcb->asoc.peers_rwnd += net->flight_size;
417 net->flight_size = 0;
652 lnets->flight_size = 0;
663 chk->whoTo->flight_size += chk->book_size;
sctp_structs.h 169 u_int32_t flight_size; member in struct:sctp_nets
sctputil.c 212 sctp_clog[sctp_cwnd_log_at].x.cwnd.inflight = net->flight_size;
228 sctp_clog[sctp_cwnd_log_at].x.cwnd.inflight = net->flight_size;
254 sctp_log_rwnd_set(uint8_t from, u_int32_t peers_rwnd , u_int32_t flight_size, u_int32_t overhead, u_int32_t a_rwndval)
259 sctp_clog[sctp_cwnd_log_at].x.rwnd.send_size = flight_size;
525 tot_out += lnet->flight_size;
546 if (lnet->flight_size != tot_out) {
548 (uint32_t)lnet, lnet->flight_size, tot_out);
549 lnet->flight_size = tot_out;
sctp_indata.c 3634 net->flight_size = 0;
3910 if (net->flight_size + net->net_ack >=
3935 dif = net->cwnd - (net->flight_size +
3954 if (net->flight_size + net->net_ack >=
3993 dif = net->cwnd - (net->flight_size +
4065 net->flight_size = 0;
sctp_output.c 4930 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);
6652 * have flight_size > cwnd.
6654 if (net->flight_size >= net->cwnd) {
6787 net->flight_size += data_list[i]->book_size
    [all...]
sctp_input.c 2916 if (on_queue < net->flight_size)
2917 on_queue = net->flight_size;
2952 seg_inflight = net->flight_size / net->mtu;
2957 if (net->cwnd > net->flight_size) {
2963 diff_adj = net->cwnd - net->flight_size;
sctp_usrreq.c 319 if (net->flight_size >= chk->book_size) {
320 net->flight_size -= chk->book_size;
322 net->flight_size = 0;
  /src/sys/netinet6/
sctp6_usrreq.c 378 net->flight_size -= chk->send_size;

Completed in 31 milliseconds