cvs commit: src/sys/netinet sctp.h sctp_asconf.c sctp_auth.c
sctp_constants.h sctp_indata.c sctp_input.c sctp_output.c
sctp_pcb.c sctp_sysctl.c sctp_timer.c sctp_uio.h sctp_usrreq.c
sctputil.c src/sys/netinet6 sctp6_usrreq.c
Randall Stewart
rrs at FreeBSD.org
Thu May 17 12:16:25 UTC 2007
rrs 2007-05-17 12:16:24 UTC
FreeBSD src repository
Modified files:
sys/netinet sctp.h sctp_asconf.c sctp_auth.c
sctp_constants.h sctp_indata.c
sctp_input.c sctp_output.c sctp_pcb.c
sctp_sysctl.c sctp_timer.c sctp_uio.h
sctp_usrreq.c sctputil.c
sys/netinet6 sctp6_usrreq.c
Log:
- Fixed 1-2-1 model to not worry about associd in sockopts
- Fixed RTOinfo for bounding.
- Fixed connect() to return ECONNREFUSED when an ABORT is received.
- Added comments to direct Static Analysis not to look at some things
it does not understand (comments are /* sa_ignore XXXXX */)
- Bind when colliding was broken, missing not_found = 1 before
checking to see if the port was in use caused endless bind loop.
- Cookie life needs to be in milliseconds to conform to socket api.
- Cookie life is not supposed to change if its 0, On the assoc
level set we changed it to 0 opps.
- Two more static analysis issues identified by the cisco
tool. Null checks needed.
- An issue for sendfile(). Need to validate the correct
input argument.
- When sending failed due to a no route to host, we leaked
the mbuf chain failing to call m_freem().
- Fix #ifdef issue for getting hash block len when HAVE_SHA2 is NOT defined
Reviewed by: gnn
Revision Changes Path
1.8 +4 -4 src/sys/netinet/sctp.h
1.14 +26 -12 src/sys/netinet/sctp_asconf.c
1.11 +1 -1 src/sys/netinet/sctp_auth.c
1.16 +2 -2 src/sys/netinet/sctp_constants.h
1.24 +6 -0 src/sys/netinet/sctp_indata.c
1.27 +5 -1 src/sys/netinet/sctp_input.c
1.26 +9 -5 src/sys/netinet/sctp_output.c
1.29 +29 -16 src/sys/netinet/sctp_pcb.c
1.6 +7 -1 src/sys/netinet/sctp_sysctl.c
1.16 +2 -0 src/sys/netinet/sctp_timer.c
1.18 +3 -5 src/sys/netinet/sctp_uio.h
1.27 +73 -54 src/sys/netinet/sctp_usrreq.c
1.31 +7 -2 src/sys/netinet/sctputil.c
1.22 +1 -0 src/sys/netinet6/sctp6_usrreq.c
More information about the cvs-src
mailing list