Lines Matching refs:addstrm
3775 struct sctp_strreset_addstrm addstrm; in sctp_make_strreset_addstrm() local
3776 __u16 size = sizeof(addstrm); in sctp_make_strreset_addstrm()
3784 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_OUT_STREAMS; in sctp_make_strreset_addstrm()
3785 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3786 addstrm.number_of_streams = htons(out); in sctp_make_strreset_addstrm()
3787 addstrm.request_seq = htonl(asoc->strreset_outseq); in sctp_make_strreset_addstrm()
3788 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3790 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()
3794 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_IN_STREAMS; in sctp_make_strreset_addstrm()
3795 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3796 addstrm.number_of_streams = htons(in); in sctp_make_strreset_addstrm()
3797 addstrm.request_seq = htonl(asoc->strreset_outseq + !!out); in sctp_make_strreset_addstrm()
3798 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3800 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()