From owner-cvs-src@FreeBSD.ORG Tue May 20 13:47:46 2008 Return-Path: Delivered-To: cvs-src@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88FDB106567B; Tue, 20 May 2008 13:47:46 +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 77E138FC27; Tue, 20 May 2008 13:47:46 +0000 (UTC) (envelope-from rrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m4KDlkqe035947; Tue, 20 May 2008 13:47:46 GMT (envelope-from rrs@repoman.freebsd.org) Received: (from rrs@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m4KDlkHC035946; Tue, 20 May 2008 13:47:46 GMT (envelope-from rrs) Message-Id: <200805201347.m4KDlkHC035946@repoman.freebsd.org> From: Randall Stewart Date: Tue, 20 May 2008 13:47:46 +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_asconf.c sctp_asconf.h sctp_cc_functions.c sctp_constants.h sctp_indata.c sctp_input.c sctp_input.h sctp_lock_bsd.h sctp_os_bsd.h sctp_output.c sctp_output.h sctp_pcb.c sctp_pcb.h sctp_structs.h sctp_sysctl.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: Tue, 20 May 2008 13:47:46 -0000 rrs 2008-05-20 13:47:46 UTC FreeBSD src repository Modified files: sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_cc_functions.c sctp_constants.h sctp_indata.c sctp_input.c sctp_input.h sctp_lock_bsd.h 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_usrreq.c sctp_var.h sctputil.c sctputil.h sys/netinet6 sctp6_usrreq.c Log: - Adds support for the multi-asconf (From Kozuka-san) - Adds some prepwork (Not all yet) for vimage in particular support the delete the sctppcbinfo.xx structs. There is still a leak in here if it were to be called plus we stil need the regrouping (From Me and Michael Tuexen) - Adds support for UDP tunneling. For BSD there is no socket yet setup so its disabled, but major argument changes are in here to emcompass the passing of the port number (zero when you don't have a udp tunnel, the default for BSD). Will add some hooks in UDP here shortly (discussed with Robert) that will allow easy tunneling. (Mainly from Peter Lei and Michael Tuexen with some BSD work from me :-D) - Some ease for windows, evidently leave is reserved by their compile move label leave: -> out: MFC after: 1 week Revision Changes Path 1.24 +1 -0 src/sys/netinet/sctp.h 1.36 +196 -55 src/sys/netinet/sctp_asconf.c 1.11 +3 -0 src/sys/netinet/sctp_asconf.h 1.5 +183 -249 src/sys/netinet/sctp_cc_functions.c 1.36 +6 -0 src/sys/netinet/sctp_constants.h 1.50 +2 -2 src/sys/netinet/sctp_indata.c 1.71 +63 -41 src/sys/netinet/sctp_input.c 1.8 +1 -1 src/sys/netinet/sctp_input.h 1.11 +4 -4 src/sys/netinet/sctp_lock_bsd.h 1.35 +6 -0 src/sys/netinet/sctp_os_bsd.h 1.70 +527 -131 src/sys/netinet/sctp_output.c 1.14 +4 -4 src/sys/netinet/sctp_output.h 1.68 +144 -28 src/sys/netinet/sctp_pcb.c 1.34 +2 -1 src/sys/netinet/sctp_pcb.h 1.28 +16 -2 src/sys/netinet/sctp_structs.h 1.18 +37 -0 src/sys/netinet/sctp_sysctl.c 1.14 +22 -0 src/sys/netinet/sctp_sysctl.h 1.34 +46 -19 src/sys/netinet/sctp_timer.c 1.55 +1 -1 src/sys/netinet/sctp_usrreq.c 1.24 +2 -0 src/sys/netinet/sctp_var.h 1.76 +29 -11 src/sys/netinet/sctputil.c 1.32 +5 -2 src/sys/netinet/sctputil.h 1.44 +3 -3 src/sys/netinet6/sctp6_usrreq.c