Searched refs:liste (Results 1 – 3 of 3) sorted by relevance
| /f-stack/freebsd/netinet/ |
| H A D | sctp_indata.c | 1707 struct sctp_stream_reset_list *liste; in sctp_process_a_data_chunk() local 2204 if (((liste = TAILQ_FIRST(&asoc->resetHead)) != NULL) && in sctp_process_a_data_chunk() 2205 SCTP_TSN_GT(tsn, liste->tsn)) { in sctp_process_a_data_chunk() 2305 if (((liste = TAILQ_FIRST(&asoc->resetHead)) != NULL) && in sctp_process_a_data_chunk() 2306 SCTP_TSN_GE(asoc->cumulative_tsn, liste->tsn)) { in sctp_process_a_data_chunk() 2313 sctp_reset_in_stream(stcb, liste->number_entries, liste->list_of_streams); in sctp_process_a_data_chunk() 2314 TAILQ_REMOVE(&asoc->resetHead, liste, next_resp); in sctp_process_a_data_chunk() 2315 sctp_send_deferred_reset_response(stcb, liste, SCTP_STREAM_RESET_RESULT_PERFORMED); in sctp_process_a_data_chunk() 2316 SCTP_FREE(liste, SCTP_M_STRESET); in sctp_process_a_data_chunk() 2318 liste = TAILQ_FIRST(&asoc->resetHead); in sctp_process_a_data_chunk() [all …]
|
| H A D | sctp_input.c | 3810 struct sctp_stream_reset_list *liste; in sctp_handle_str_reset_request_out() local 3814 SCTP_MALLOC(liste, struct sctp_stream_reset_list *, in sctp_handle_str_reset_request_out() 3816 if (liste == NULL) { in sctp_handle_str_reset_request_out() 3822 liste->seq = seq; in sctp_handle_str_reset_request_out() 3823 liste->tsn = tsn; in sctp_handle_str_reset_request_out() 3824 liste->number_entries = number_entries; in sctp_handle_str_reset_request_out() 3825 memcpy(&liste->list_of_streams, req->list_of_streams, number_entries * sizeof(uint16_t)); in sctp_handle_str_reset_request_out() 3826 TAILQ_INSERT_TAIL(&asoc->resetHead, liste, next_resp); in sctp_handle_str_reset_request_out()
|
| H A D | sctp_pcb.c | 219 struct sctp_vrf *liste; in sctp_find_vrf() local 222 LIST_FOREACH(liste, bucket, next_vrf) { in sctp_find_vrf() 223 if (vrf_id == liste->vrf_id) { in sctp_find_vrf() 224 return (liste); in sctp_find_vrf()
|