From owner-cvs-src-old@FreeBSD.ORG Thu Feb 12 18:51:12 2009 Return-Path: Delivered-To: cvs-src-old@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2CC1C10656F6 for ; Thu, 12 Feb 2009 18:51:12 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 1368E8FC33 for ; Thu, 12 Feb 2009 18:51:12 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.3/8.14.3) with ESMTP id n1CIpBuN094781 for ; Thu, 12 Feb 2009 18:51:11 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n1CIpBJn094780 for cvs-src-old@freebsd.org; Thu, 12 Feb 2009 18:51:11 GMT (envelope-from rrs@repoman.freebsd.org) Message-Id: <200902121851.n1CIpBJn094780@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rrs@repoman.freebsd.org using -f From: Randall Stewart Date: Thu, 12 Feb 2009 18:50:27 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: RELENG_7 Subject: cvs commit: src/sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_auth.c sctp_auth.h sctp_constants.h sctp_header.h sctp_indata.c sctp_indata.h sctp_input.c sctp_os_bsd.h sctp_output.c sctp_output.h sctp_pcb.c sctp_pcb.h sctp_structs.h ... X-BeenThere: cvs-src-old@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Feb 2009 18:51:14 -0000 rrs 2009-02-12 18:50:27 UTC FreeBSD src repository Modified files: (Branch: RELENG_7) sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_auth.c sctp_auth.h sctp_constants.h sctp_header.h sctp_indata.c sctp_indata.h sctp_input.c sctp_os_bsd.h sctp_output.c sctp_output.h sctp_pcb.c sctp_pcb.h sctp_structs.h sctp_sysctl.c sctp_sysctl.h sctp_timer.c sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c sctputil.h sys/netinet6 sctp6_usrreq.c Log: SVN rev 188532 on 2009-02-12 18:50:27Z by rrs MFC of 185694 - The IETF hack session: Code from the hack-session known as the IETF (and a bit of debugging afterwards): - Fix protection code for notification generation. - Decouple associd from vtag - Allow vtags to have less strigent requirements in non-uniqueness. o don't pre-hash them when you issue one in a cookie. o Allow duplicates and use addresses and ports to discriminate amongst the duplicates during lookup. - Add support for the NAT draft draft-ietf-behave-sctpnat-00, this is still experimental and needs more extensive testing with the Jason Butt ipfw changes. - Support for the SENDER_DRY event to get DTLS in OpenSSL working with a set of patches from Michael Tuexen (hopefully heading to OpenSSL soon). - Update the support of SCTP-AUTH by Peter Lei. - Use macros for refcounting. - Fix MTU for UDP encapsulation. - Fix reporting back of unsent data. - Update assoc send counter handling to be consistent with endpoint sent counter. - Fix a bug in PR-SCTP. - Fix so we only send another FWD-TSN when a SACK arrives IF and only if the adv-peer-ack point progressed. However we still make sure a timer is running if we do have an adv_peer_ack point. - Fix PR-SCTP bug where chunks were retransmitted if they are sent unreliable but not abandoned yet. With the help of: Michael Teuxen and Peter Lei :-) Revision Changes Path 1.21.2.6 +19 -6 src/sys/netinet/sctp.h 1.34.2.6 +198 -0 src/sys/netinet/sctp_asconf.c 1.10.2.3 +4 -0 src/sys/netinet/sctp_asconf.h 1.18.2.3 +317 -173 src/sys/netinet/sctp_auth.c 1.5.2.1 +46 -35 src/sys/netinet/sctp_auth.h 1.32.2.8 +47 -54 src/sys/netinet/sctp_constants.h 1.6.2.2 +41 -0 src/sys/netinet/sctp_header.h 1.45.2.10 +2717 -79 src/sys/netinet/sctp_indata.c 1.9.2.2 +10 -0 src/sys/netinet/sctp_indata.h 1.65.2.11 +352 -26 src/sys/netinet/sctp_input.c 1.33.2.6 +21 -0 src/sys/netinet/sctp_os_bsd.h 1.58.2.16 +2930 -615 src/sys/netinet/sctp_output.c 1.13.2.3 +4 -1 src/sys/netinet/sctp_output.h 1.62.2.15 +259 -162 src/sys/netinet/sctp_pcb.c 1.31.2.8 +15 -8 src/sys/netinet/sctp_pcb.h 1.25.2.4 +21 -2 src/sys/netinet/sctp_structs.h 1.16.2.4 +16 -0 src/sys/netinet/sctp_sysctl.c 1.13.2.5 +16 -0 src/sys/netinet/sctp_sysctl.h 1.32.2.8 +13 -5 src/sys/netinet/sctp_timer.c 1.29.2.4 +23 -9 src/sys/netinet/sctp_uio.h 1.48.2.13 +123 -16 src/sys/netinet/sctp_usrreq.c 1.20.2.9 +17 -54 src/sys/netinet/sctp_var.h 1.65.2.17 +169 -103 src/sys/netinet/sctputil.c 1.29.2.5 +3 -1 src/sys/netinet/sctputil.h 1.41.2.6 +3 -0 src/sys/netinet6/sctp6_usrreq.c