diff options
author | tuexen <tuexen@FreeBSD.org> | 2010-04-03 15:40:14 +0000 |
---|---|---|
committer | tuexen <tuexen@FreeBSD.org> | 2010-04-03 15:40:14 +0000 |
commit | 238a37de82c68689f86b353ea628510ea7de86fb (patch) | |
tree | 910b3788649fd9cf8fa48c1f3ecdecaeeca07e09 /sys/netinet/sctp_indata.h | |
parent | 7fe3c0a85bf91b64ec309ff2b7806fef53de39e0 (diff) | |
download | FreeBSD-src-238a37de82c68689f86b353ea628510ea7de86fb.zip FreeBSD-src-238a37de82c68689f86b353ea628510ea7de86fb.tar.gz |
* Fix some race condition in SACK/NR-SACK processing.
* Fix handling of mapping arrays when draining mbufs or processing
FORWARD-TSN chunks.
* Cleanup code (no duplicate code anymore for SACKs and NR-SACKs).
Part of this code was developed together with rrs.
MFC after: 2 weeks.
Diffstat (limited to 'sys/netinet/sctp_indata.h')
-rw-r--r-- | sys/netinet/sctp_indata.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/netinet/sctp_indata.h b/sys/netinet/sctp_indata.h index b6a8323..79978a5 100644 --- a/sys/netinet/sctp_indata.h +++ b/sys/netinet/sctp_indata.h @@ -121,7 +121,9 @@ sctp_process_data(struct mbuf **, int, int *, int, struct sctphdr *, struct sctp_inpcb *, struct sctp_tcb *, struct sctp_nets *, uint32_t *); -void sctp_sack_check(struct sctp_tcb *, int, int, int *); +void sctp_slide_mapping_arrays(struct sctp_tcb *stcb); + +void sctp_sack_check(struct sctp_tcb *, int, int *); #endif #endif |