diff options
author | rrs <rrs@FreeBSD.org> | 2007-10-30 14:09:24 +0000 |
---|---|---|
committer | rrs <rrs@FreeBSD.org> | 2007-10-30 14:09:24 +0000 |
commit | 814ed57392bec9cf5be68e30ad73cd809079b7ed (patch) | |
tree | 06d1ed3e2635e73c3786a3d9087f96f533011d02 /sys/netinet/sctp_usrreq.c | |
parent | d0be68189d3bb9676d666e1749a0a8d3a967577c (diff) | |
download | FreeBSD-src-814ed57392bec9cf5be68e30ad73cd809079b7ed.zip FreeBSD-src-814ed57392bec9cf5be68e30ad73cd809079b7ed.tar.gz |
- Change the Time Wait of vtags value to match the cookie-life
- Select a tag gains ability to optionally save new tags
off in the timewait system.
- When looking up associations do not give back a stcb that
is in the about-to-be-freed state, and instead continue
looking for other candiates.
- New function to query to see if value is in time-wait.
- Timewait had a time comparison error that caused very
few vtags to actually stay in time-wait.
- When setting tags in time-wait, we now use the time
requested NOT a fixed constant value.
- sstat now gets the proper associd when we do the query.
- When we process an association, we expect the tag chosen
(if we have one from a cookie) to be in time-wait. Before
we would NOT allow the assoc up by checking if its good.
In theory this should have caused almost all assoc not
to come up except for the time-comparison bug above (this
bug was hidden by the time comparison bug :-D).
- Don't save tags for nonce values in the time-wait cache
since these are used only during cookie collisions and do
not matter if they are unique or not.
MFC after: 1 week
Diffstat (limited to 'sys/netinet/sctp_usrreq.c')
-rw-r--r-- | sys/netinet/sctp_usrreq.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/netinet/sctp_usrreq.c b/sys/netinet/sctp_usrreq.c index 24b916e..070c9a7 100644 --- a/sys/netinet/sctp_usrreq.c +++ b/sys/netinet/sctp_usrreq.c @@ -2266,6 +2266,7 @@ flags_out: * land. */ sstat->sstat_state = stcb->asoc.state; + sstat->sstat_assoc_id = sctp_get_associd(stcb); sstat->sstat_rwnd = stcb->asoc.peers_rwnd; sstat->sstat_unackdata = stcb->asoc.sent_queue_cnt; /* |