Home
last modified time | relevance | path

Searched refs:cwnd (Results 1 – 4 of 4) sorted by relevance

/dragonfly/sys/netgraph/l2tp/
HDng_l2tp.c126 u_int16_t cwnd; /* current congestion window */ member
928 if (i >= seq->cwnd) in ng_l2tp_recv_ctrl()
1027 seq->cwnd = 1; in ng_l2tp_seq_init()
1115 seq->cwnd = 1; in ng_l2tp_seq_reset()
1161 if (seq->cwnd < seq->wmax) { in ng_l2tp_seq_recv_nr()
1164 if (seq->cwnd < seq->ssth) { in ng_l2tp_seq_recv_nr()
1165 seq->cwnd += nack; in ng_l2tp_seq_recv_nr()
1167 if (seq->cwnd > seq->ssth) { /* into cg.av. phase */ in ng_l2tp_seq_recv_nr()
1168 nack = seq->cwnd - seq->ssth; in ng_l2tp_seq_recv_nr()
1169 seq->cwnd = seq->ssth; in ng_l2tp_seq_recv_nr()
[all …]
/dragonfly/sys/netgraph7/l2tp/
HDng_l2tp.c139 u_int16_t cwnd; /* current congestion window */ member
1082 if (i >= seq->cwnd) { in ng_l2tp_rcvdata_ctrl()
1214 seq->cwnd = 1; in ng_l2tp_seq_init()
1312 seq->cwnd = 1; in ng_l2tp_seq_reset()
1366 if (seq->cwnd < seq->wmax) { in ng_l2tp_seq_recv_nr()
1369 if (seq->cwnd < seq->ssth) { in ng_l2tp_seq_recv_nr()
1370 seq->cwnd += nack; in ng_l2tp_seq_recv_nr()
1372 if (seq->cwnd > seq->ssth) { /* into cg.av. phase */ in ng_l2tp_seq_recv_nr()
1373 nack = seq->cwnd - seq->ssth; in ng_l2tp_seq_recv_nr()
1374 seq->cwnd = seq->ssth; in ng_l2tp_seq_recv_nr()
[all …]
/dragonfly/sys/vfs/nfs/
HDnfsrtt.h62 int cwnd; /* Send window */ member
HDnfs_socket.c902 rt->cwnd = nmp->nm_maxasync_scaled; in nfs_reply()