Lines Matching refs:addstrm
3723 struct sctp_strreset_addstrm addstrm; in sctp_make_strreset_addstrm() local
3724 __u16 size = sizeof(addstrm); in sctp_make_strreset_addstrm()
3732 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_OUT_STREAMS; in sctp_make_strreset_addstrm()
3733 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3734 addstrm.number_of_streams = htons(out); in sctp_make_strreset_addstrm()
3735 addstrm.request_seq = htonl(asoc->strreset_outseq); in sctp_make_strreset_addstrm()
3736 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3738 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()
3742 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_IN_STREAMS; in sctp_make_strreset_addstrm()
3743 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3744 addstrm.number_of_streams = htons(in); in sctp_make_strreset_addstrm()
3745 addstrm.request_seq = htonl(asoc->strreset_outseq + !!out); in sctp_make_strreset_addstrm()
3746 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3748 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()