From owner-cvs-src-old@FreeBSD.ORG Fri Feb 27 20:55:02 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 15A6C106564A for ; Fri, 27 Feb 2009 20:55:02 +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 01F668FC21 for ; Fri, 27 Feb 2009 20:55:02 +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 n1RKt1xe058675 for ; Fri, 27 Feb 2009 20:55:01 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from svn2cvs@localhost) by repoman.freebsd.org (8.14.3/8.14.3/Submit) id n1RKt1MS058674 for cvs-src-old@freebsd.org; Fri, 27 Feb 2009 20:55:01 GMT (envelope-from rrs@repoman.freebsd.org) Message-Id: <200902272055.n1RKt1MS058674@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: svn2cvs set sender to rrs@repoman.freebsd.org using -f From: Randall Stewart Date: Fri, 27 Feb 2009 20:54:45 +0000 (UTC) To: cvs-src-old@freebsd.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet sctp_crc32.c sctp_input.c sctp_output.c sctp_output.h sctp_usrreq.c 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: Fri, 27 Feb 2009 20:55:02 -0000 rrs 2009-02-27 20:54:45 UTC FreeBSD src repository Modified files: sys/netinet sctp_crc32.c sctp_input.c sctp_output.c sctp_output.h sctp_usrreq.c Log: SVN rev 189121 on 2009-02-27 20:54:45Z by rrs Fix the add stream feature of strm-reset to really work: - Fix the copy, we can't do a blind copy but must transfer the data from the old to the new. - Fix the ACK processing so we properly stop retransmitting the thing. - Fix it so if we get a retran we will properly reply with the saved response without doing anything. MFC after: 1 month Revision Changes Path 1.15 +0 -1 src/sys/netinet/sctp_crc32.c 1.80 +68 -37 src/sys/netinet/sctp_input.c 1.84 +10 -6 src/sys/netinet/sctp_output.c 1.18 +5 -0 src/sys/netinet/sctp_output.h 1.66 +49 -4 src/sys/netinet/sctp_usrreq.c