From owner-cvs-src@FreeBSD.ORG Sun Jun 17 01:36:03 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 1ED0016A41F; Sun, 17 Jun 2007 01:36:03 +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 0E64013C457; Sun, 17 Jun 2007 01:36:03 +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 l5H1a2aJ096864; Sun, 17 Jun 2007 01:36:02 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.13.8/8.13.8/Submit) id l5H1a29d096860; Sun, 17 Jun 2007 01:36:02 GMT (envelope-from rrs) Message-Id: <200706170136.l5H1a29d096860@repoman.freebsd.org> From: Randall Stewart Date: Sun, 17 Jun 2007 01:36:02 +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_input.c sctp_output.c sctp_pcb.c src/sys/netinet6 sctp6_usrreq.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: Sun, 17 Jun 2007 01:36:03 -0000 rrs 2007-06-17 01:36:02 UTC FreeBSD src repository Modified files: sys/netinet sctp_input.c sctp_output.c sctp_pcb.c sys/netinet6 sctp6_usrreq.c Log: - For sctp_input/sctp6_input add announcment when a packet arrives (debug) - re-factor the packet drop in sctp_output a bit more, we don't need the trim after all, but the size calc is now corrected. - When a assoc is in the COOKIE-ECHO/COOKIE-WAIT state and the user closes, it should not matter if data is queued, the assoc should be purged. - In error leg a missing free_chunk when iph comes in NULL (should not happen but just in case). Revision Changes Path 1.43 +2 -0 src/sys/netinet/sctp_input.c 1.41 +3 -4 src/sys/netinet/sctp_output.c 1.42 +2 -4 src/sys/netinet/sctp_pcb.c 1.29 +3 -0 src/sys/netinet6/sctp6_usrreq.c