Home
last modified time | relevance | path

Searched refs:strrst (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/netinet/
H A Dsctp_timer.c1117 struct sctp_tmit_chunk *strrst = NULL, *chk = NULL; in sctp_strreset_timer() local
1123 (void)sctp_find_stream_reset(stcb, stcb->asoc.str_reset_seq_out, &strrst); in sctp_strreset_timer()
1124 if (strrst == NULL) { in sctp_strreset_timer()
1127 net = strrst->whoTo; in sctp_strreset_timer()
1139 strrst->whoTo = alt; in sctp_strreset_timer()
1166 if (strrst->sent != SCTP_DATAGRAM_RESEND) in sctp_strreset_timer()
1168 strrst->sent = SCTP_DATAGRAM_RESEND; in sctp_strreset_timer()
1169 strrst->flags |= CHUNK_FLAGS_FRAGMENT_OK; in sctp_strreset_timer()
H A Dsctp_usrreq.c4611 struct sctp_reset_streams *strrst; local
4615 SCTP_CHECK_AND_CAST(strrst, optval, struct sctp_reset_streams, optsize);
4616 SCTP_FIND_STCB(inp, stcb, strrst->srs_assoc_id);
4638 strrst->srs_number_streams * sizeof(uint16_t) > optsize) {
4643 if (strrst->srs_flags & SCTP_STREAM_RESET_INCOMING) {
4652 if (strrst->srs_flags & SCTP_STREAM_RESET_OUTGOING) {
4655 if ((strrst->srs_number_streams > SCTP_MAX_STREAMS_AT_ONCE_RESET) && send_in) {
4667 for (i = 0; i < strrst->srs_number_streams; i++) {
4669 (strrst->srs_stream_list[i] >= stcb->asoc.streamincnt)) {
4675 (strrst->srs_stream_list[i] >= stcb->asoc.streamoutcnt)) {
[all …]
H A Dsctp_input.c1362 struct sctp_stream_reset_list *strrst, *nstrrst; in sctp_process_cookie_existing() local
1822 TAILQ_FOREACH_SAFE(strrst, &asoc->resetHead, next_resp, nstrrst) { in sctp_process_cookie_existing()
1823 TAILQ_REMOVE(&asoc->resetHead, strrst, next_resp); in sctp_process_cookie_existing()
1824 SCTP_FREE(strrst, SCTP_M_STRESET); in sctp_process_cookie_existing()
H A Dsctp_pcb.c4561 struct sctp_stream_reset_list *strrst, *nstrrst; in sctp_free_assoc() local
4816 TAILQ_FOREACH_SAFE(strrst, &asoc->resetHead, next_resp, nstrrst) { in sctp_free_assoc()
4817 TAILQ_REMOVE(&asoc->resetHead, strrst, next_resp); in sctp_free_assoc()
4818 SCTP_FREE(strrst, SCTP_M_STRESET); in sctp_free_assoc()