| Commit message (Expand) | Author | Age | Files | Lines |
* | Drop tcp_trace() from SMALL_KERNEL builds to make room on amd64 floppy |  visa | 2021-01-28 | 1 | -1/+11 |
* | Convert tcp_sysctl to sysctl_bounded_args |  gnezdo | 2020-08-18 | 1 | -30/+1 |
* | Count the number of TCP SACK options that were dropped due to the |  bluhm | 2019-07-12 | 1 | -1/+3 |
* | The output from tcp debug sockets was incomplete. After detach tp |  bluhm | 2018-06-11 | 1 | -2/+3 |
* | Historically there were slow and fast tcp timeouts. That is why |  bluhm | 2018-05-08 | 1 | -28/+2 |
* | Historically TCP timeouts were implemented with pr_slowtimo and |  bluhm | 2018-02-07 | 1 | -3/+2 |
* | There was a race in the TCP timers. As they may sleep to grab the |  bluhm | 2018-02-06 | 1 | -1/+7 |
* | The TCP reaper timeout was still imlemented as soft timeout. So |  bluhm | 2018-01-23 | 1 | -4/+2 |
* | Move PRU_DETACH out of pr_usrreq into per proto pr_detach |  florian | 2017-11-02 | 1 | -1/+2 |
* | Remove the TCP_FACK option and associated #if{,n}def code. |  job | 2017-10-25 | 1 | -7/+1 |
* | Refactor handling of partial TCP acknowledgements |  mikeb | 2017-10-24 | 1 | -3/+1 |
* | Unconditionally enable TCP selective acknowledgements (SACK) |  mikeb | 2017-10-22 | 1 | -14/+2 |
* | Pass down the address family through the pr_input calls. This |  bluhm | 2017-04-14 | 1 | -2/+2 |
* | Move PRU_ATTACH out of the pr_usrreq functions into pr_attach. |  claudio | 2017-03-13 | 1 | -2/+2 |
* | percpu counters for TCP stats |  jca | 2017-02-09 | 1 | -2/+126 |
* | In sogetopt, preallocate an mbuf to avoid using sleeping mallocs with |  dhill | 2017-02-01 | 1 | -2/+2 |
* | Change the IPv4 pr_input function to the way IPv6 is implemented, |  bluhm | 2017-01-29 | 1 | -5/+2 |
* | Reduce the difference between struct protosw and ip6protosw. The |  bluhm | 2017-01-26 | 1 | -2/+2 |
* | Since raw_input() and route_input() are gone from pr_input, we can |  bluhm | 2017-01-25 | 1 | -2/+2 |
* | Kill recursive splsoftnet()s. |  mpi | 2016-11-16 | 1 | -15/+1 |
* | Convert timeouts that need a process context to timeout_set_proc(9). |  mpi | 2016-10-04 | 1 | -2/+2 |
* | To tune the TCP SYN cache we need more information. Print the |  bluhm | 2016-07-20 | 1 | -1/+8 |
* | Make the size for the syn cache hash array tunable. As we are |  bluhm | 2016-07-20 | 1 | -6/+11 |
* | Add net.inet.{tcp,udp}.rootonly sysctl, to mark which ports |  vgross | 2016-06-18 | 1 | -2/+5 |
* | Allow to adjust tcp_syn_use_limit with sysctl net.inet.tcp.synuselimit. |  bluhm | 2016-03-29 | 1 | -3/+20 |
* | To prevent attacks on the hash buckets of the syn cache, our TCP |  bluhm | 2016-03-27 | 1 | -2/+3 |
* | Add a tcps_sc_seedrandom counter in TCP SYN cache and netstat -s. |  bluhm | 2016-03-21 | 1 | -1/+2 |
* | The syn cache is completely implemented in tcp_input.c. So all its |  bluhm | 2015-08-27 | 1 | -4/+1 |
* | Rename the syn cache counter into tcp_syn_cache_count to have the |  bluhm | 2015-08-24 | 1 | -2/+1 |
* | Count dropped SYN packets on the tcpstat. They are dropped due to the |  yasuoka | 2015-02-08 | 1 | -1/+2 |
* | To satisfy kernel grovellers and bad (but document) sysctl |  deraadt | 2015-01-21 | 1 | -1/+3 |
* | since the cksum rewrite the counters for hardware checksummed packets |  henning | 2014-01-23 | 1 | -3/+3 |
* | remove historical #if 1 |  deraadt | 2013-10-23 | 1 | -3/+1 |
* | Sprinkle a lot more IPv6 routing domains support in the kernel. |  phessler | 2013-10-21 | 1 | -2/+2 |
* | Add the TCP socket option TCP_NOPUSH to delay sending the stream. |  bluhm | 2013-08-12 | 1 | -1/+2 |
* | Pass the routing domain to IPv6 pr_ctlinput() like in IPv4. |  bluhm | 2013-06-01 | 1 | -2/+2 |
* | Remove various external variable declaration from sources files and |  mpi | 2013-04-10 | 1 | -1/+3 |
* | Add sysctl net.inet.tcp.always_keepalive, when this is set the system |  sthen | 2011-07-06 | 1 | -3/+5 |
* | Add socket option SO_SPLICE to splice together two TCP sockets. |  bluhm | 2011-01-07 | 1 | -1/+3 |
* | There is no TCP6 in our kernel, so remove the #ifndef TCP6. |  bluhm | 2010-10-21 | 1 | -3/+3 |
* | TCP send and recv buffer scaling. |  claudio | 2010-09-24 | 1 | -5/+12 |
* | Add support for using IPsec in multiple rdomains. |  reyk | 2010-07-09 | 1 | -2/+2 |
* | Fix the naming of interfaces and variables for rdomains and rtables |  guenther | 2010-07-03 | 1 | -2/+2 |
* | Extend the protosw pr_ctlinput function to include the rdomain. This is |  claudio | 2009-11-13 | 1 | -3/+3 |
* | sockets created via a listening socket lose the rdomain and fail to work |  claudio | 2009-08-10 | 1 | -4/+5 |
* | Initial support for routing domains. This allows to bind interfaces to |  claudio | 2009-06-05 | 1 | -1/+2 |
* | fix macros up so they use the do { } while (/* CONSTCOND */ 0) idiom |  dlg | 2008-11-08 | 1 | -3/+3 |
* | Remove {tcp/udp}6_usrreq(); Since the normal ones now |  thib | 2008-05-24 | 1 | -5/+1 |
* | Deal with the situation when TCP nfs mounts timeout and processes |  thib | 2008-05-23 | 1 | -2/+2 |
* | remove tcp_drain code since it's not longer used; ok henning, feedback thib |  markus | 2008-05-06 | 1 | -32/+1 |