From owner-cvs-src-old@FreeBSD.ORG Sat Dec 6 13:22:48 2008 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 83F3A1065672 for ; Sat, 6 Dec 2008 13:22:48 +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 69AF68FC1A for ; Sat, 6 Dec 2008 13:22:48 +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 mB6DMmWp088553 for ; Sat, 6 Dec 2008 13:22:48 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id mB6DMm9Y088552 for cvs-src-old@freebsd.org; Sat, 6 Dec 2008 13:22:48 GMT (envelope-from rrs@repoman.freebsd.org) Message-Id: <200812061322.mB6DMm9Y088552@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rrs@repoman.freebsd.org using -f From: Randall Stewart Date: Sat, 6 Dec 2008 13:19:54 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD 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: Sat, 06 Dec 2008 13:22:48 -0000 rrs 2008-12-06 13:19:54 UTC FreeBSD src repository Modified files: 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 185694 on 2008-12-06 13:19:54Z by rrs 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 :-) MFC after: 4 weeks Revision Changes Path 1.27 +19 -6 src/sys/netinet/sctp.h 1.40 +198 -0 src/sys/netinet/sctp_asconf.c 1.13 +4 -0 src/sys/netinet/sctp_asconf.h 1.21 +317 -173 src/sys/netinet/sctp_auth.c 1.6 +46 -35 src/sys/netinet/sctp_auth.h 1.40 +47 -54 src/sys/netinet/sctp_constants.h 1.8 +41 -0 src/sys/netinet/sctp_header.h 1.55 +2717 -79 src/sys/netinet/sctp_indata.c 1.11 +10 -0 src/sys/netinet/sctp_indata.h 1.76 +352 -26 src/sys/netinet/sctp_input.c 1.43 +21 -0 src/sys/netinet/sctp_os_bsd.h 1.80 +5717 -3405 src/sys/netinet/sctp_output.c 1.16 +4 -1 src/sys/netinet/sctp_output.h 1.78 +259 -162 src/sys/netinet/sctp_pcb.c 1.40 +15 -8 src/sys/netinet/sctp_pcb.h 1.29 +21 -2 src/sys/netinet/sctp_structs.h 1.21 +16 -0 src/sys/netinet/sctp_sysctl.c 1.18 +16 -0 src/sys/netinet/sctp_sysctl.h 1.42 +13 -5 src/sys/netinet/sctp_timer.c 1.34 +23 -9 src/sys/netinet/sctp_uio.h 1.62 +123 -16 src/sys/netinet/sctp_usrreq.c 1.30 +17 -54 src/sys/netinet/sctp_var.h 1.85 +169 -103 src/sys/netinet/sctputil.c 1.34 +3 -1 src/sys/netinet/sctputil.h 1.47 +3 -0 src/sys/netinet6/sctp6_usrreq.c