Lines Matching refs:addstrm
3728 struct sctp_strreset_addstrm addstrm; in sctp_make_strreset_addstrm() local
3729 __u16 size = sizeof(addstrm); in sctp_make_strreset_addstrm()
3737 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_OUT_STREAMS; in sctp_make_strreset_addstrm()
3738 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3739 addstrm.number_of_streams = htons(out); in sctp_make_strreset_addstrm()
3740 addstrm.request_seq = htonl(asoc->strreset_outseq); in sctp_make_strreset_addstrm()
3741 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3743 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()
3747 addstrm.param_hdr.type = SCTP_PARAM_RESET_ADD_IN_STREAMS; in sctp_make_strreset_addstrm()
3748 addstrm.param_hdr.length = htons(size); in sctp_make_strreset_addstrm()
3749 addstrm.number_of_streams = htons(in); in sctp_make_strreset_addstrm()
3750 addstrm.request_seq = htonl(asoc->strreset_outseq + !!out); in sctp_make_strreset_addstrm()
3751 addstrm.reserved = 0; in sctp_make_strreset_addstrm()
3753 sctp_addto_chunk(retval, size, &addstrm); in sctp_make_strreset_addstrm()