From owner-cvs-src@FreeBSD.ORG Wed Jun 13 01:31:54 2007 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 60DF116A468; Wed, 13 Jun 2007 01:31:54 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [69.147.83.41]) by mx1.freebsd.org (Postfix) with ESMTP id 50E1A13C48C; Wed, 13 Jun 2007 01:31:54 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.8/8.13.8) with ESMTP id l5D1VsGA046649; Wed, 13 Jun 2007 01:31:54 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5D1VsaG046640; Wed, 13 Jun 2007 01:31:54 GMT (envelope-from rrs) Message-Id: <200706130131.l5D1VsaG046640@repoman.freebsd.org> From: Randall Stewart Date: Wed, 13 Jun 2007 01:31:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/sys/netinet sctp.h sctp_constants.h sctp_input.c sctp_pcb.c sctp_structs.h sctp_sysctl.c sctp_sysctl.h sctp_timer.c sctputil.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 13 Jun 2007 01:31:54 -0000 rrs 2007-06-13 01:31:53 UTC FreeBSD src repository Modified files: sys/netinet sctp.h sctp_constants.h sctp_input.c sctp_pcb.c sctp_structs.h sctp_sysctl.c sctp_sysctl.h sctp_timer.c sctputil.c Log: - Fixed cookie handling to calc an RTO when its an INIT collision case. - Fixed RTO calc to maintain a seperate variable to track if a RTO calc as been done, this allows the RTO var to be doubled during initial timeouts. - Reduces the amount of stack used by process control. - Use a constant for the peer chunk overhead. - Name change to spell candidate correctly. Revision Changes Path 1.13 +3 -0 src/sys/netinet/sctp.h 1.21 +1 -1 src/sys/netinet/sctp_constants.h 1.38 +25 -42 src/sys/netinet/sctp_input.c 1.38 +18 -12 src/sys/netinet/sctp_pcb.c 1.19 +1 -0 src/sys/netinet/sctp_structs.h 1.10 +1 -1 src/sys/netinet/sctp_sysctl.c 1.5 +3 -1 src/sys/netinet/sctp_sysctl.h 1.20 +3 -0 src/sys/netinet/sctp_timer.c 1.41 +2 -1 src/sys/netinet/sctputil.c