| Commit message (Expand) | Author | Age | Files | Lines |
* | To ease changes to underlying mbuf structure and the mbuf allocator, reduce | rwatson | 2015-01-05 | 1 | -1/+1 |
* | In preparation of merging projects/sendfile, transform bare access to | glebius | 2014-11-12 | 1 | -13/+18 |
* | Fix some minor TSO issues: | hselasky | 2014-11-11 | 1 | -8/+8 |
* | Remove SYSCTL_VNET_* macros, and simply put CTLFLAG_VNET where needed. | glebius | 2014-11-07 | 1 | -6/+6 |
* | Catch ipv6 case when attempting to do PLPMTUD blackhole detection. | sbruno | 2014-10-13 | 1 | -0/+5 |
* | Implement PLPMTUD blackhole detection (RFC 4821), inspired by code | sbruno | 2014-10-07 | 1 | -1/+11 |
* | Minor code styling. | hselasky | 2014-10-06 | 1 | -17/+16 |
* | Improve transmit sending offload, TSO, algorithm in general. | hselasky | 2014-09-22 | 1 | -11/+96 |
* | Revert r271504. A new patch to solve this issue will be made. | hselasky | 2014-09-13 | 1 | -74/+3 |
* | Improve transmit sending offload, TSO, algorithm in general. | hselasky | 2014-09-13 | 1 | -3/+74 |
* | Fix a typo. | hiren | 2014-07-03 | 1 | -1/+1 |
* | - Remove rt_metrics_lite and simply put its members into rtentry. | glebius | 2014-03-05 | 1 | -2/+2 |
* | dtrace sdt: remove the ugly sname parameter of SDT_PROBE_DEFINE | avg | 2013-11-26 | 1 | -2/+2 |
* | - For kernel compiled only with KDTRACE_HOOKS and not any lock debugging | attilio | 2013-11-25 | 1 | -1/+0 |
* | Implement the ip, tcp, and udp DTrace providers. The probe definitions use | markj | 2013-08-25 | 1 | -0/+20 |
* | Allow drivers to specify a maximum TSO length in bytes if they are | andre | 2013-06-03 | 1 | -4/+5 |
* | Fix tcp_output() so that tcpcb is updated in the same manner when an | glebius | 2013-04-11 | 1 | -70/+74 |
* | - Replace compat macros with function calls. | glebius | 2013-03-16 | 1 | -1/+1 |
* | - Use m_getcl() instead of hand allocating. | glebius | 2013-03-15 | 1 | -12/+8 |
* | Mechanically substitute flags from historic mbuf allocator with | glebius | 2012-12-05 | 1 | -3/+3 |
* | Fix typo; s/ouput/output | kevlo | 2012-11-07 | 1 | -1/+1 |
* | Forced commit to provide the correct commit message to r242251: | andre | 2012-10-29 | 1 | -3/+3 |
* | Prevent a flurry of forced window updates when an application is | andre | 2012-10-28 | 1 | -11/+29 |
* | When SYN or SYN/ACK had to be retransmitted RFC5681 requires us to | andre | 2012-10-28 | 1 | -2/+6 |
* | Switch the entire IPv4 stack to keep the IP packet header | glebius | 2012-10-22 | 1 | -2/+2 |
* | If ip_output() returns EMSGSIZE to tcp_output(), then the latter calls | glebius | 2012-07-16 | 1 | -16/+27 |
* | - Updated TOE support in the kernel. | np | 2012-06-19 | 1 | -0/+8 |
* | It turns out that too many drivers are not only parsing the L2/3/4 | bz | 2012-05-28 | 1 | -1/+2 |
* | MFp4 bz_ipv6_fast: | bz | 2012-05-25 | 1 | -6/+11 |
* | When we receive an ICMP unreach need fragmentation datagram, we take | glebius | 2012-04-16 | 1 | -1/+1 |
* | Fix PAWS (Protect Against Wrapped Sequence numbers) in cases when | bz | 2012-02-15 | 1 | -2/+2 |
* | Restore sysctl names for tcp_sendspace/tcp_recvspace. | pluknet | 2011-11-02 | 1 | -1/+1 |
* | Move the tcp_sendspace and tcp_recvspace sysctl's from | andre | 2011-10-16 | 1 | -0/+5 |
* | Remove the ss_fltsz and ss_fltsz_local sysctl's which have | andre | 2011-10-16 | 1 | -10/+0 |
* | Increase the defaults for the maximum socket buffer limit, | bz | 2011-08-25 | 1 | -1/+1 |
* | Remove #ifdef notyet code dating back to 4.3BSD Net/2 (and possibly earlier). | cperciva | 2011-07-05 | 1 | -18/+1 |
* | Fix a KASSERT from r212803 to check the correct length also in case of | bz | 2011-06-20 | 1 | -1/+8 |
* | Advance the advertised window (rcv_adv) to the currently received data | jhb | 2011-06-13 | 1 | -1/+1 |
* | Handle a rare edge case with nearly full TCP receive buffers. If a TCP | jhb | 2011-05-02 | 1 | -5/+12 |
* | Make the TCP code compile without INET. Sort #includes and add #ifdef INETs. | bz | 2011-04-30 | 1 | -5/+10 |
* | TCP reuses t_rxtshift to determine the backoff timer used for both the | jhb | 2011-04-29 | 1 | -0/+1 |
* | When checking to see if a window update should be sent to the remote peer, | jhb | 2011-04-18 | 1 | -0/+8 |
* | - Add some helper hook points to the TCP stack. The hooks allow Khelp modules to | lstewart | 2010-12-28 | 1 | -0/+28 |
* | - Reinstantiate the after_idle hook call in tcp_output(), which got lost | lstewart | 2010-12-02 | 1 | -32/+3 |
* | Add new, per connection, statistics for TCP, including: | gnn | 2010-11-17 | 1 | -2/+4 |
* | This commit marks the first formal contribution of the "Five New TCP Congestion | lstewart | 2010-11-12 | 1 | -8/+16 |
* | Rearrange the TSO code to make it more readable and to clearly | andre | 2010-09-17 | 1 | -33/+49 |
* | Remove the TCP inflight bandwidth limiter as announced in r211315 | andre | 2010-09-16 | 1 | -1/+0 |
* | If a TCP connection has been idle for one retransmit timeout or more | andre | 2010-08-18 | 1 | -15/+26 |
* | Fix the interaction between 'ICMP fragmentation needed' MTU updates, | andre | 2010-08-15 | 1 | -1/+3 |