aboutsummaryrefslogtreecommitdiff
path: root/sys/netinet
Commit message (Expand)AuthorAgeFilesLines
* Fix a bug in handling special ABORT chunks.Michael Tuexen2017-10-241-11/+18
* Fix a locking issue found by running AFL on the userland stack.Michael Tuexen2017-10-241-3/+0
* Relax per-ifnet cif_vrs list double locking in carp(4).Alexander Motin2017-10-191-11/+6
* Fix a signed/unsigned warning.Michael Tuexen2017-10-181-4/+5
* Abort an SCTP association, when a DATA chunk is followed by an unknownMichael Tuexen2017-10-181-4/+25
* Revert change which got in accidently.Michael Tuexen2017-10-181-2/+0
* Fix a bug introduced in r324638.Michael Tuexen2017-10-182-0/+3
* Fix the handling of parital and too short chunks.Michael Tuexen2017-10-151-114/+56
* Code cleanup, not functional change.Michael Tuexen2017-10-146-31/+21
* Declare more TCP globals in tcp_var.h, so that alternative TCP stacksGleb Smirnoff2017-10-115-68/+66
* Declare pmtud_blackhole global variables in tcp_timer.h, so thatGleb Smirnoff2017-10-062-6/+10
* Ensure that the accept ABORT chunks with the T-bit set only theMichael Tuexen2017-10-051-0/+1
* Forgotten bits in r324179: Include sys/syslog.h if INVARIANTS is not definedJulien Charbon2017-10-021-0/+3
* The soisconnected() call removed from syncache_socket() in r307966 wasPatrick Kelsey2017-10-011-0/+1
* Fix an infinite loop in tcp_tw_2msl_scan() when an INP_TIMEWAIT inp hasJulien Charbon2017-10-011-4/+23
* Some mbuf related fixes in icmp_error()Andrey V. Elsukov2017-09-291-25/+40
* Remove unused function.Michael Tuexen2017-09-272-36/+0
* tcp: Don't "negotiate" MSS.Sepherosa Ziehau2017-09-271-6/+4
* Add missing locking. Found by Coverity while scanning the usrsctpMichael Tuexen2017-09-221-0/+10
* Add missing socket lock.Michael Tuexen2017-09-221-0/+2
* Code cleanup, no functional change.Michael Tuexen2017-09-214-13/+5
* Free the control structure after using is, not before.Michael Tuexen2017-09-211-1/+1
* No need to wakeup, since sctp_add_to_readq() does it.Michael Tuexen2017-09-211-1/+0
* Protect the address workqueue timer by a mutex.Michael Tuexen2017-09-202-13/+15
* Fix a warning.Michael Tuexen2017-09-191-1/+1
* Avoid an overflow when computing the staleness.Michael Tuexen2017-09-191-11/+15
* Remove a no longer used variable.Michael Tuexen2017-09-191-7/+0
* Fix an accounting bug and use sctp_timer_start to start a timer.Michael Tuexen2017-09-171-5/+11
* Remove code not used on any platform currently supported.Michael Tuexen2017-09-165-67/+21
* Export the UDP encapsualation port and the path state.Michael Tuexen2017-09-122-1/+11
* Add support to print the TCP stack being used.Michael Tuexen2017-09-121-1/+1
* Fix MTU computation. Coverity scanning usrsctp pointed to this code...Michael Tuexen2017-09-091-12/+14
* Fix locking issues found by Coverity scanning the usrsctp library.Michael Tuexen2017-09-091-5/+16
* Silence a Coverity warning from scanning the usrsctp library.Michael Tuexen2017-09-091-2/+2
* Savely remove a chunk from the control queue.Michael Tuexen2017-09-091-2/+2
* Add support for generic backpressure indicator for ratelimitedHans Petter Selasky2017-09-062-1/+32
* Fix blackhole detection.Michael Tuexen2017-08-281-7/+9
* Use counter(9) for PLPMTUD counters.Sean Bruno2017-08-252-28/+10
* Avoid TCP log messages which are false positives.Michael Tuexen2017-08-231-36/+40
* Avoid TCP log messages which are false positives.Michael Tuexen2017-08-231-19/+19
* Ensure inp_vflag is consistently set for TCP endpoints.Michael Tuexen2017-08-181-0/+2
* Fix comment typo.Oleg Bulyzhin2017-08-091-1/+1
* Correct sysctl names.Dag-Erling Smørgrav2017-08-091-1/+1
* After inpcb route caching was put back in place there is no need forBjoern A. Zeeb2017-07-271-6/+0
* cc_cubic: restore braces around if-condition blockEd Maste2017-07-261-1/+2
* Revert r307901 - Inform CC modules about loss events.Sean Bruno2017-07-258-111/+36
* Revert r308180 - Set slow start threshold more accurrately on loss ...Sean Bruno2017-07-256-31/+19
* Remove duplicate statement.Michael Tuexen2017-07-251-1/+0
* Deal with listening socket correctly.Michael Tuexen2017-07-201-2/+2
* Fix the explicit EOR mode. If the final messages is not complete, sendMichael Tuexen2017-07-202-66/+74