/src/sys/netinet/ |
sctp_timer.c | 830 struct sctp_tmit_chunk *lchk; local in function:sctp_t3rxt_timer 831 lchk = sctp_try_advance_peer_ack_point(stcb, &stcb->asoc); 846 if (lchk) { 848 sctp_timer_start(SCTP_TIMER_TYPE_SEND, stcb->sctp_ep, stcb, lchk->whoTo);
|
sctp_indata.c | 4120 struct sctp_tmit_chunk *lchk; local in function:sctp_handle_sack 4121 lchk = sctp_try_advance_peer_ack_point(stcb, asoc); 4135 if (lchk) { 4138 stcb->sctp_ep, stcb, lchk->whoTo); 4153 struct sctp_tmit_chunk *lchk; local in function:sctp_handle_sack 4171 lchk = TAILQ_FIRST(&asoc->send_queue); 4176 if (lchk == NULL) { 4180 asoc->fast_recovery_tsn = lchk->rec.data.TSN_seq - 1; 4214 struct sctp_tmit_chunk *lchk; local in function:sctp_handle_sack 4215 lchk = TAILQ_FIRST(&asoc->send_queue) [all...] |
sctp_input.c | 2223 struct sctp_tmit_chunk *lchk; local in function:sctp_handle_ecn_echo 2232 lchk = TAILQ_FIRST(&stcb->asoc.send_queue); 2233 if (lchk == NULL) { 2236 stcb->asoc.nonce_resync_tsn = lchk->rec.data.TSN_seq; 2243 lchk = TAILQ_FIRST(&stcb->asoc.sent_queue); 2244 while (lchk) { 2245 if (lchk->rec.data.TSN_seq == tsn) { 2246 net = lchk->whoTo; 2249 if (compare_with_wrap(lchk->rec.data.TSN_seq, tsn, MAX_SEQ)) 2251 lchk = TAILQ_NEXT(lchk, sctp_next) [all...] |