From 532412f6c49a9077f90f5cd40b66c87a16efe085 Mon Sep 17 00:00:00 2001 From: rrs Date: Tue, 8 May 2007 00:21:05 +0000 Subject: - More macros for OS compatabilty - PR-SCTP would ignore FWD-TSN's above a rwnd's worth of TSN's (1 byte msgs).. this left the peer hopelessly out of sync.. or an attacker. So now we abort the assoc. - New IFN hash, also rename hashes to match addr/ifn now that the vrf has multiple. - Do not enable SCTP_PCB_FLAGS_RECVDATAIOEVNT per default as defined in the Socket API ID. - Export MTU information via sysctl. - Vrf's need table id's. This is default for BSD, but may be other things later when BSD fully supports VRFs. - Additional stream reset bug (caught by cisco dev-test). - Additional validations for the address in sending a message (socket api). -------- and ----- - Fix association notifications not to give the active open side false notifications. - Fix so sendfile and SENDALL will work properly (missing flag to say socket sender is done). - Fix Bug that prevented COOKIES from being retransmitted. - Break out connectx into helper sub-models so that iox routines can reuse the helpers. - When an address is added during system init (non-dynamic mode) make sure that the "defer use" flag is not set. ** its compiling on XR now :-D ** Reviewed by: gnn --- sys/netinet/sctp_input.h | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'sys/netinet/sctp_input.h') diff --git a/sys/netinet/sctp_input.h b/sys/netinet/sctp_input.h index c34b8cc..047cab4 100644 --- a/sys/netinet/sctp_input.h +++ b/sys/netinet/sctp_input.h @@ -40,14 +40,16 @@ __FBSDID("$FreeBSD$"); int sctp_common_input_processing(struct mbuf **, int, int, int, struct sctphdr *, struct sctp_chunkhdr *, struct sctp_inpcb *, - struct sctp_tcb *, struct sctp_nets *, uint8_t); + struct sctp_tcb *, struct sctp_nets *, uint8_t, uint32_t, uint32_t); struct sctp_stream_reset_out_request * - sctp_find_stream_reset(struct sctp_tcb *stcb, uint32_t seq, struct sctp_tmit_chunk **bchk); +sctp_find_stream_reset(struct sctp_tcb *stcb, uint32_t seq, + struct sctp_tmit_chunk **bchk); -void - sctp_reset_in_stream(struct sctp_tcb *stcb, int number_entries, uint16_t * list); +void +sctp_reset_in_stream(struct sctp_tcb *stcb, int number_entries, + uint16_t * list); #endif -- cgit v1.1