Date: Fri, 3 Nov 2006 15:23:16 +0000 (UTC) From: Randall Stewart <rrs@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/compat/freebsd32 syscalls.master src/sys/conf NOTES files options src/sys/kern init_sysent.c syscalls.c syscalls.master systrace_args.c uipc_syscalls.c src/sys/net rtsock.c src/sys/netinet in_proto.c sctp.h sctp_asconf.c ... Message-ID: <200611031523.kA3FNGfm010445@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
rrs 2006-11-03 15:23:16 UTC FreeBSD src repository Modified files: sys/compat/freebsd32 syscalls.master sys/conf NOTES files options sys/kern init_sysent.c syscalls.c syscalls.master systrace_args.c uipc_syscalls.c sys/net rtsock.c sys/netinet in_proto.c sys/netinet6 in6_proto.c sys/sys mbuf.h socket.h syscall.h syscall.mk sysproto.h Added files: sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_auth.c sctp_auth.h sctp_bsd_addr.c sctp_bsd_addr.h sctp_constants.h sctp_crc32.c sctp_crc32.h sctp_header.h sctp_indata.c sctp_indata.h sctp_input.c sctp_input.h sctp_lock_bsd.h sctp_os.h sctp_os_bsd.h sctp_output.c sctp_output.h sctp_pcb.c sctp_pcb.h sctp_peeloff.c sctp_peeloff.h sctp_structs.h sctp_timer.c sctp_timer.h sctp_uio.h sctp_usrreq.c sctp_var.h sctputil.c sctputil.h sys/netinet6 sctp6_usrreq.c sctp6_var.h Log: Ok, here it is, we finally add SCTP to current. Note that this work is not just mine, but it is also the works of Peter Lei and Michael Tuexen. They both are my two key other developers working on the project.. and they need ata-boy's too: **** peterlei@cisco.com tuexen@fh-muenster.de **** I did do a make sysent which updated the syscall's and sysproto.. I hope that is correct... without it you don't build since we have new syscalls for SCTP :-0 So go out and look at the NOTES, add option SCTP (make sure inet and inet6 are present too) and play with SCTP. I will see about comitting some test tools I have after I figure out where I should place them. I also have a lib (libsctp.a) that adds some of the missing socketapi functions that I need to put into lib's.. I will talk to George about this :-) There may still be some 64 bit issues in here, none of us have a 64 bit processor to test with yet.. Michael may have a MAC but thats another beast too.. If you have a mac and want to use SCTP contact Michael he maintains a web site with a loadable module with this code :-) Reviewed by: gnn Approved by: gnn Revision Changes Path 1.86 +10 -0 src/sys/compat/freebsd32/syscalls.master 1.1397 +91 -0 src/sys/conf/NOTES 1.1158 +16 -2 src/sys/conf/files 1.563 +27 -0 src/sys/conf/options 1.226 +4 -0 src/sys/kern/init_sysent.c 1.210 +4 -0 src/sys/kern/syscalls.c 1.231 +10 -0 src/sys/kern/syscalls.master 1.10 +47 -0 src/sys/kern/systrace_args.c 1.242 +451 -0 src/sys/kern/uipc_syscalls.c 1.138 +13 -2 src/sys/net/rtsock.c 1.82 +48 -0 src/sys/netinet/in_proto.c 1.1 +349 -0 src/sys/netinet/sctp.h (new) 1.1 +2856 -0 src/sys/netinet/sctp_asconf.c (new) 1.1 +80 -0 src/sys/netinet/sctp_asconf.h (new) 1.1 +2389 -0 src/sys/netinet/sctp_auth.c (new) 1.1 +262 -0 src/sys/netinet/sctp_auth.h (new) 1.1 +2032 -0 src/sys/netinet/sctp_bsd_addr.c (new) 1.1 +70 -0 src/sys/netinet/sctp_bsd_addr.h (new) 1.1 +903 -0 src/sys/netinet/sctp_constants.h (new) 1.1 +713 -0 src/sys/netinet/sctp_crc32.c (new) 1.1 +56 -0 src/sys/netinet/sctp_crc32.h (new) 1.1 +562 -0 src/sys/netinet/sctp_header.h (new) 1.1 +5588 -0 src/sys/netinet/sctp_indata.c (new) 1.1 +118 -0 src/sys/netinet/sctp_indata.h (new) 1.1 +4749 -0 src/sys/netinet/sctp_input.c (new) 1.1 +57 -0 src/sys/netinet/sctp_input.h (new) 1.1 +355 -0 src/sys/netinet/sctp_lock_bsd.h (new) 1.1 +66 -0 src/sys/netinet/sctp_os.h (new) 1.1 +89 -0 src/sys/netinet/sctp_os_bsd.h (new) 1.1 +10378 -0 src/sys/netinet/sctp_output.c (new) 1.1 +171 -0 src/sys/netinet/sctp_output.h (new) 1.1 +5283 -0 src/sys/netinet/sctp_pcb.c (new) 1.1 +504 -0 src/sys/netinet/sctp_pcb.h (new) 1.1 +240 -0 src/sys/netinet/sctp_peeloff.c (new) 1.1 +56 -0 src/sys/netinet/sctp_peeloff.h (new) 1.1 +892 -0 src/sys/netinet/sctp_structs.h (new) 1.1 +1736 -0 src/sys/netinet/sctp_timer.c (new) 1.1 +99 -0 src/sys/netinet/sctp_timer.h (new) 1.1 +946 -0 src/sys/netinet/sctp_uio.h (new) 1.1 +4852 -0 src/sys/netinet/sctp_usrreq.c (new) 1.1 +476 -0 src/sys/netinet/sctp_var.h (new) 1.1 +5390 -0 src/sys/netinet/sctputil.c (new) 1.1 +314 -0 src/sys/netinet/sctputil.h (new) 1.40 +48 -0 src/sys/netinet6/in6_proto.c 1.1 +1370 -0 src/sys/netinet6/sctp6_usrreq.c (new) 1.1 +52 -0 src/sys/netinet6/sctp6_var.h (new) 1.199 +1 -0 src/sys/sys/mbuf.h 1.92 +1 -0 src/sys/sys/socket.h 1.207 +5 -1 src/sys/sys/syscall.h 1.162 +5 -1 src/sys/sys/syscall.mk 1.210 +39 -0 src/sys/sys/sysproto.h
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200611031523.kA3FNGfm010445>