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

  /src/sys/netinet/
sctp_indata.c 591 nxt_todel = asoc->strmin[stream_no].last_sequence_delivered + 1;
718 asoc->strmin[stream_no].last_sequence_delivered++;
741 strm = &asoc->strmin[stream_no];
818 strm = &asoc->strmin[chk->rec.data.stream_number];
1569 asoc->strmin[chk->rec.data.stream_number].last_sequence_delivered + 1;
1835 (compare_with_wrap(asoc->strmin[strmno].last_sequence_delivered,
1837 asoc->strmin[strmno].last_sequence_delivered == strmseq)) {
1843 asoc->strmin[strmno].last_sequence_delivered);
1894 ((asoc->strmin[strmno].last_sequence_delivered + 1) == strmseq &&
1895 TAILQ_EMPTY(&asoc->strmin[strmno].inqueue))) &
    [all...]
sctp_structs.h 355 struct sctp_stream_in *strmin; member in struct:sctp_association
sctp_input.c 242 if (asoc->strmin != NULL) {
244 free(asoc->strmin, M_PCB);
246 asoc->strmin = malloc(asoc->streamincnt * sizeof(struct sctp_stream_in),
248 if (asoc->strmin == NULL) {
258 asoc->strmin[i].stream_no = i;
259 asoc->strmin[i].last_sequence_delivered = 0xffff;
266 TAILQ_INIT(&asoc->strmin[i].inqueue);
272 asoc->strmin[i].next_spoke.tqe_next = 0;
273 asoc->strmin[i].next_spoke.tqe_prev = 0;
2615 stcb->asoc.strmin[(list[i])].last_sequence_delivered = 0xffff
    [all...]
sctp_pcb.c 3254 if (asoc->strmin) {
3257 if (!TAILQ_EMPTY(&asoc->strmin[i].inqueue)) {
3259 chk = TAILQ_FIRST(&asoc->strmin[i].inqueue);
3261 TAILQ_REMOVE(&asoc->strmin[i].inqueue,
3272 chk = TAILQ_FIRST(&asoc->strmin[i].inqueue);
3276 free(asoc->strmin, M_PCB);
3277 asoc->strmin = NULL;
4534 chk = TAILQ_FIRST(&asoc->strmin[strmat].inqueue);
4555 TAILQ_REMOVE(&asoc->strmin[strmat].inqueue,

Completed in 18 milliseconds