Searched refs:liste (Results 1 - 3 of 3) sorted by relevance

/freebsd-10.0-release/sys/netinet/
H A Dsctp_indata.c1443 struct sctp_stream_reset_list *liste; local
2031 if (((liste = TAILQ_FIRST(&asoc->resetHead)) != NULL) &&
2032 SCTP_TSN_GT(tsn, liste->tsn)) {
2106 if (((liste = TAILQ_FIRST(&asoc->resetHead)) != NULL) &&
2107 SCTP_TSN_GE(asoc->cumulative_tsn, liste->tsn)) {
2116 sctp_reset_in_stream(stcb, liste->number_entries, liste->list_of_streams);
2117 TAILQ_REMOVE(&asoc->resetHead, liste, next_resp);
2118 SCTP_FREE(liste, SCTP_M_STRESET);
2120 liste
[all...]
H A Dsctp_input.c3898 struct sctp_stream_reset_list *liste; local
3902 SCTP_MALLOC(liste, struct sctp_stream_reset_list *,
3904 if (liste == NULL) {
3910 liste->tsn = tsn;
3911 liste->number_entries = number_entries;
3912 memcpy(&liste->list_of_streams, req->list_of_streams, number_entries * sizeof(uint16_t));
3913 TAILQ_INSERT_TAIL(&asoc->resetHead, liste, next_resp);
H A Dsctp_pcb.c220 struct sctp_vrf *liste; local
223 LIST_FOREACH(liste, bucket, next_vrf) {
224 if (vrf_id == liste->vrf_id) {
225 return (liste);

Completed in 85 milliseconds