diff options
author | rrs <rrs@FreeBSD.org> | 2007-07-14 09:36:28 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2007-07-14 09:36:28 +0000 |
commit | 1e9af2c480a638933876e637c1f3b9f1b7bad3e9 (patch) | |
tree | 008308315d74a9df2eec618692844a82f1ace245 /sys/conf/options | |
parent | 0948603d9eefb8b7f5898f99c8703b2e5b7f9647 (diff) | |
download | FreeBSD-src-1e9af2c480a638933876e637c1f3b9f1b7bad3e9.zip FreeBSD-src-1e9af2c480a638933876e637c1f3b9f1b7bad3e9.tar.gz |
- Modular congestion control, with RFC2581 being the default.
- CMT_PF states added (w/sysctl to turn the PF version on)
- sctp_input.c had a missing incr of cookie case when the
auth was bad. This meant a free was called without an
increment to refcnt, added increment like rest of code.
- There was a case, unlikely, when the scope of the destination
changed (this is a TSNH case). In that case, it would not free
the alloc'ed asoc (in sctp_input.c).
- When listed addresses found a colliding cookie/Init, then
the collided upon tcb was not unlocked in sctp_pcb.c
- Add error checking on arguments of sctp_sendx(3) to prevent it from
referencing a NULL pointer.
- Fix an error return of sctp_sendx(3), it was returing
ENOMEM not -1.
- Get assoc id was changed to use the sanctified socket api
method for getting a assoc id (PEER_ADDR_INFO instead of
PEER_ADDR_PARAMS).
- Fix it so a peeled off socket will get a proper error return
if it trys to send to a different address then it is connected to.
- Fix so that select_a_stream can avoid an endless loop that
could hang a caller.
- time_entered (state set time) was not being set in all cases
to the time we went established.
Approved by: re(ken smith)
Diffstat (limited to 'sys/conf/options')
-rw-r--r-- | sys/conf/options | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sys/conf/options b/sys/conf/options index 65dadaa..281c40d 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -396,7 +396,6 @@ XBONEHACK # SCTP opt_sctp.h SCTP_DEBUG opt_sctp.h # Enable debug printfs -SCTP_HIGH_SPEED opt_sctp.h # Enable Sally Floyds HS TCP CC SCTP_WITH_NO_CSUM opt_sctp.h # Use this at your peril SCTP_LOCK_LOGGING opt_sctp.h # Log to KTR lock activity SCTP_MBUF_LOGGING opt_sctp.h # Log to KTR general mbuf aloc/free |