aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet/sctputil.c
Commit message (Expand)AuthorAgeFilesLines
* Remove dead stores reported by clang static code analysisMichael Tuexen2020-10-061-4/+0
* net: clean up empty lines in .c and .h filesMateusz Guzik2020-09-011-24/+0
* Improve the handling of concurrent send() calls for SCTP sockets,Michael Tuexen2020-08-161-12/+5
* Enter epoch earlier. This is needed because we are exiting it alsoMichael Tuexen2020-08-151-1/+1
* Add reference counts for inp/stcb/net when timers are running.Michael Tuexen2020-07-191-49/+87
* Improve the locking of address lists by adding some asserts andMichael Tuexen2020-07-171-2/+5
* Fix a bug introduced in https://svnweb.freebsd.org/changeset/base/362173Michael Tuexen2020-06-301-1/+5
* Fix the build for an INET6 only configuration.Michael Tuexen2020-06-211-0/+2
* Set a variable also in the case of an INET6 only kernelMichael Tuexen2020-06-201-0/+2
* Cleanup the adding and deleting of addresses via sctp_bindx().Michael Tuexen2020-06-201-85/+63
* Remove last argument of sctp_addr_mgmt_ep_sa(), since it is not used.Michael Tuexen2020-06-191-4/+2
* Allow the self reference to be NULL in case the timer was stopped.Michael Tuexen2020-06-171-1/+1
* Cleanups, no functional change.Michael Tuexen2020-06-141-17/+3
* Non-functional changes due to upstream cleanup.Michael Tuexen2020-06-111-37/+12
* Whitespace cleanups and removal of a stale comment.Michael Tuexen2020-06-081-1/+0
* Retire SCTP_SO_LOCK_TESTING.Michael Tuexen2020-06-071-181/+0
* Remove redundant assignment.Michael Tuexen2020-05-181-1/+0
* Fix logical condition by looking at usecs.Michael Tuexen2020-05-181-1/+1
* Whitespace change.Michael Tuexen2020-05-181-2/+2
* Ensure that the SCTP iterator runs with an stcb and inp, which belong toMichael Tuexen2020-05-101-0/+5
* Ensure that we have a path when starting the T3 RXT timer.Michael Tuexen2020-05-101-4/+9
* Do more argument validation under INVARIANTS when starting/stoppingMichael Tuexen2020-04-061-2/+13
* Handle integer overflows correctly when converting msecs and secs toMichael Tuexen2020-03-281-22/+100
* Remove an optimization, which was incorrect a couple of times andMichael Tuexen2020-03-251-21/+3
* Improve consistency in debug output.Michael Tuexen2020-03-251-13/+13
* Use consistent debug output.Michael Tuexen2020-03-251-5/+5
* Don't restore the vnet too early in error cases.Michael Tuexen2020-03-251-4/+4
* Only call panic when building with INVARIANTS.Michael Tuexen2020-03-241-0/+12
* Another cleanup of the timer code. Also be more pedantic about theMichael Tuexen2020-03-241-260/+549
* More timer cleanups, no functional change.Michael Tuexen2020-03-211-2/+2
* Consistently provide arguments for timer start and stop routines.Michael Tuexen2020-03-191-1/+1
* Cleanup the stream reset and asconf timer.Michael Tuexen2020-03-191-1/+1
* The MTU candidates MUST be a multiple of 4, so make them so.Michael Tuexen2020-03-191-1/+1
* Handle the timers in a consistent sequence according to the definitionMichael Tuexen2020-03-171-116/+115
* Epochify SCTP.Michael Tuexen2020-02-181-3/+10
* Revert https://svnweb.freebsd.org/changeset/base/357761Michael Tuexen2020-02-111-2/+2
* Don't start an SCTP timer using a net, which has been removed.Michael Tuexen2020-02-111-0/+4
* Use an int instead of a bool variable, since bool is not supportedMichael Tuexen2020-02-111-2/+2
* Cleanup timer handling.Michael Tuexen2020-02-091-9/+57
* Remove unused timer.Michael Tuexen2020-02-041-1/+0
* Ensure that we don't miss a trigger for kicking off the SCTP iterator.Michael Tuexen2020-01-051-3/+2
* Separate out SCTP related dtrace code.Michael Tuexen2019-10-141-1/+1
* Cleanup the RTO calculation and perform some consistency checksMichael Tuexen2019-09-221-13/+21
* Fix build issues for the userland stack on Raspbian.Michael Tuexen2019-08-061-1/+1
* Don't free read control entries, which are still on the stream queue whenMichael Tuexen2019-07-151-7/+11
* Improve input validation for the IPPROTO_SCTP level socket optionsMichael Tuexen2019-05-191-32/+23
* Fix an SCTP related locking issue. Don't report that the TCB_SEND_LOCKMichael Tuexen2019-04-111-1/+1
* Fix build issue for the userland stack.Michael Tuexen2019-03-241-11/+11
* Fix a signed/unsigned bug when receiving SCTP messages.Michael Tuexen2019-03-241-4/+5
* Fix a locking issue when reporing outbount messages.Michael Tuexen2019-02-101-1/+1