Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 6 Dec 2008 13:19:54 +0000 (UTC)
From:      Randall Stewart <rrs@FreeBSD.org>
To:        cvs-src-old@freebsd.org
Subject:   cvs commit: src/sys/netinet sctp.h sctp_asconf.c sctp_asconf.h sctp_auth.c sctp_auth.h sctp_constants.h sctp_header.h sctp_indata.c sctp_indata.h sctp_input.c sctp_os_bsd.h sctp_output.c sctp_output.h sctp_pcb.c sctp_pcb.h sctp_structs.h ...
Message-ID:  <200812061322.mB6DMm9Y088552@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
rrs         2008-12-06 13:19:54 UTC

  FreeBSD src repository

  Modified files:
    sys/netinet          sctp.h sctp_asconf.c sctp_asconf.h 
                         sctp_auth.c sctp_auth.h sctp_constants.h 
                         sctp_header.h sctp_indata.c sctp_indata.h 
                         sctp_input.c 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_uio.h 
                         sctp_usrreq.c sctp_var.h sctputil.c 
                         sctputil.h 
    sys/netinet6         sctp6_usrreq.c 
  Log:
  SVN rev 185694 on 2008-12-06 13:19:54Z by rrs
  
  Code from the hack-session known as the IETF (and a
  bit of debugging afterwards):
  - Fix protection code for notification generation.
  - Decouple associd from vtag
  - Allow vtags to have less strigent requirements in non-uniqueness.
     o don't pre-hash them when you issue one in a cookie.
     o Allow duplicates and use addresses and ports to
       discriminate amongst the duplicates during lookup.
  - Add support for the NAT draft draft-ietf-behave-sctpnat-00, this
    is still experimental and needs more extensive testing with the
    Jason Butt ipfw changes.
  - Support for the SENDER_DRY event to get DTLS in OpenSSL working
    with a set of patches from Michael Tuexen (hopefully heading to OpenSSL soon).
  - Update the support of SCTP-AUTH by Peter Lei.
  - Use macros for refcounting.
  - Fix MTU for UDP encapsulation.
  - Fix reporting back of unsent data.
  - Update assoc send counter handling to be consistent with endpoint sent counter.
  - Fix a bug in PR-SCTP.
  - Fix so we only send another FWD-TSN when a SACK arrives IF and only
    if the adv-peer-ack point progressed. However we still make sure
    a timer is running if we do have an adv_peer_ack point.
  - Fix PR-SCTP bug where chunks were retransmitted if they are sent
    unreliable but not abandoned yet.
  
  With the help of:       Michael Teuxen and Peter Lei :-)
  MFC after:       4 weeks
  
  Revision  Changes      Path
  1.27      +19 -6       src/sys/netinet/sctp.h
  1.40      +198 -0      src/sys/netinet/sctp_asconf.c
  1.13      +4 -0        src/sys/netinet/sctp_asconf.h
  1.21      +317 -173    src/sys/netinet/sctp_auth.c
  1.6       +46 -35      src/sys/netinet/sctp_auth.h
  1.40      +47 -54      src/sys/netinet/sctp_constants.h
  1.8       +41 -0       src/sys/netinet/sctp_header.h
  1.55      +2717 -79    src/sys/netinet/sctp_indata.c
  1.11      +10 -0       src/sys/netinet/sctp_indata.h
  1.76      +352 -26     src/sys/netinet/sctp_input.c
  1.43      +21 -0       src/sys/netinet/sctp_os_bsd.h
  1.80      +5717 -3405  src/sys/netinet/sctp_output.c
  1.16      +4 -1        src/sys/netinet/sctp_output.h
  1.78      +259 -162    src/sys/netinet/sctp_pcb.c
  1.40      +15 -8       src/sys/netinet/sctp_pcb.h
  1.29      +21 -2       src/sys/netinet/sctp_structs.h
  1.21      +16 -0       src/sys/netinet/sctp_sysctl.c
  1.18      +16 -0       src/sys/netinet/sctp_sysctl.h
  1.42      +13 -5       src/sys/netinet/sctp_timer.c
  1.34      +23 -9       src/sys/netinet/sctp_uio.h
  1.62      +123 -16     src/sys/netinet/sctp_usrreq.c
  1.30      +17 -54      src/sys/netinet/sctp_var.h
  1.85      +169 -103    src/sys/netinet/sctputil.c
  1.34      +3 -1        src/sys/netinet/sctputil.h
  1.47      +3 -0        src/sys/netinet6/sctp6_usrreq.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200812061322.mB6DMm9Y088552>