Searched refs:lchk (Results 1 - 4 of 4) sorted by relevance

/freebsd-11.0-release/sys/netinet/
H A Dsctp_cc_functions.c147 struct sctp_tmit_chunk *lchk; local
203 lchk = TAILQ_FIRST(&asoc->send_queue);
208 if (lchk == NULL) {
212 asoc->fast_recovery_tsn = lchk->rec.data.TSN_seq - 1;
221 if (lchk == NULL) {
225 net->fast_recovery_tsn = lchk->rec.data.TSN_seq - 1;
1706 struct sctp_tmit_chunk *lchk; local
1710 lchk = TAILQ_FIRST(&asoc->send_queue);
1715 if (lchk == NULL) {
1719 asoc->fast_recovery_tsn = lchk
2231 struct sctp_tmit_chunk *lchk; local
[all...]
H A Dsctp_timer.c973 struct sctp_tmit_chunk *lchk; local
975 lchk = sctp_try_advance_peer_ack_point(stcb, &stcb->asoc);
979 if (lchk) {
981 sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, lchk->whoTo);
H A Dsctp_indata.c773 struct sctp_tmit_chunk *chk, *lchk, *tchk; local
787 TAILQ_FOREACH_SAFE(chk, &control->reasm, sctp_next, lchk) {
4274 struct sctp_tmit_chunk *lchk; local
4278 lchk = sctp_try_advance_peer_ack_point(stcb, asoc);
4286 } else if (lchk) {
4288 if (lchk->rec.data.fwd_tsn_cnt >= 3) {
4293 if (lchk) {
4296 stcb->sctp_ep, stcb, lchk->whoTo);
5109 struct sctp_tmit_chunk *lchk; local
5113 lchk
[all...]
H A Dsctp_input.c3033 struct sctp_tmit_chunk *lchk; local
3054 lchk = TAILQ_LAST(&stcb->asoc.send_queue, sctpchunk_listhead);
3055 if (lchk == NULL) {
3058 window_data_tsn = lchk->rec.data.TSN_seq;
3063 TAILQ_FOREACH(lchk, &stcb->asoc.sent_queue, sctp_next) {
3064 if (lchk->rec.data.TSN_seq == tsn) {
3065 net = lchk->whoTo;
3066 net->ecn_prev_cwnd = lchk->rec.data.cwnd_at_send;
3069 if (SCTP_TSN_GT(lchk->rec.data.TSN_seq, tsn)) {

Completed in 145 milliseconds