Lines Matching refs:addstrm
3767 struct sctp_strreset_addstrm addstrm; in sctp_make_strreset_addstrm() local
3768 __u16 size = sizeof(addstrm); in sctp_make_strreset_addstrm()
3776 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_OUT_STREAMS; in sctp_make_strreset_addstrm()
3777 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3778 addstrm.number_of_streams = htons(out); in sctp_make_strreset_addstrm()
3779 addstrm.request_seq = htonl(asoc->strreset_outseq); in sctp_make_strreset_addstrm()
3780 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3782 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()
3786 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_IN_STREAMS; in sctp_make_strreset_addstrm()
3787 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3788 addstrm.number_of_streams = htons(in); in sctp_make_strreset_addstrm()
3789 addstrm.request_seq = htonl(asoc->strreset_outseq + !!out); in sctp_make_strreset_addstrm()
3790 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3792 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()