Lines Matching defs:chk
350 struct sctp_tmit_chunk *chk;
356 TAILQ_FOREACH(chk, &stcb->asoc.send_queue, sctp_next) {
357 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
358 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
361 TAILQ_FOREACH(chk, &stcb->asoc.sent_queue, sctp_next) {
362 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
367 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;
368 if (chk->sent != SCTP_DATAGRAM_RESEND)
370 chk->sent = SCTP_DATAGRAM_RESEND;
371 chk->rec.data.doing_fast_retransmit = 0;
373 chk->sent = SCTP_DATAGRAM_RESEND;
375 chk->sent_rcv_time.tv_sec = 0;
376 chk->sent_rcv_time.tv_usec = 0;
377 stcb->asoc.total_flight -= chk->send_size;
378 net->flight_size -= chk->send_size;
382 TAILQ_FOREACH(chk, &strm->outqueue, sctp_next) {
383 if ((chk->send_size+IP_HDR_SIZE) > nxtsz) {
384 chk->flags |= CHUNK_FLAGS_FRAGMENT_OK;