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 ...

Randall Stewart rrs at FreeBSD.org
Tue May 20 13:47:46 UTC 2008


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


More information about the cvs-all mailing list