HomeSort by: relevance | last modified time | path
    Searched defs:stre (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/netinet/
sctp_output.c 3873 struct sctp_stream_out *stre, *strn; local in function:sctp_insert_on_wheel
3874 stre = TAILQ_FIRST(&asoc->out_wheel);
3875 if (stre == NULL) {
3880 for (; stre; stre = strn) {
3881 strn = TAILQ_NEXT(stre, next_spoke);
3882 if (stre->stream_no > strq->stream_no) {
3883 TAILQ_INSERT_BEFORE(stre, strq, next_spoke);
3885 } else if (stre->stream_no == strq->stream_no) {
3890 TAILQ_INSERT_AFTER(&asoc->out_wheel, stre, strq
    [all...]
sctp_output.c 3873 struct sctp_stream_out *stre, *strn; local in function:sctp_insert_on_wheel
3874 stre = TAILQ_FIRST(&asoc->out_wheel);
3875 if (stre == NULL) {
3880 for (; stre; stre = strn) {
3881 strn = TAILQ_NEXT(stre, next_spoke);
3882 if (stre->stream_no > strq->stream_no) {
3883 TAILQ_INSERT_BEFORE(stre, strq, next_spoke);
3885 } else if (stre->stream_no == strq->stream_no) {
3890 TAILQ_INSERT_AFTER(&asoc->out_wheel, stre, strq
    [all...]

Completed in 26 milliseconds